diff options
author | Panagiotis Karalis <pkaralis@intracom-telecom.com> | 2019-02-25 14:56:18 +0200 |
---|---|---|
committer | Cedric Ollivier <cedric.ollivier@orange.com> | 2019-02-27 09:53:09 +0000 |
commit | 692c50bbeb01b57c184cd8629a534a19f9b9ad73 (patch) | |
tree | 4f163e42c16a5dfe7d6da3587ef538392c8e1933 | |
parent | 9262d3c0ee23aa5b79dbf790162134acccb5c42b (diff) |
Gather all skipped tempest test cases
This patch applies a change to the regex responsible for
identifying Tempest test cases. With the current regex some
skipped test cases are erroneously ignored.
The condition has been updated in order to match both format of
skipped testcases ('skip:' and 'skip [xxx]:')
Change-Id: Ie7144b01e07cae92918eede0324f3f1f2582c4aa
Signed-off-by: Panagiotis Karalis <pkaralis@intracom-telecom.com>
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/tempest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py index 1ae37f91c..597c711fa 100644 --- a/functest/opnfv_tests/openstack/tempest/tempest.py +++ b/functest/opnfv_tests/openstack/tempest/tempest.py @@ -273,7 +273,7 @@ class TempestCommon(singlevm.VmReady2): output): failed_testcases.append(match) skipped_testcases = [] - for match in re.findall(r'.*\{\d{1,2}\} (.*?) \.{3} skip:', + for match in re.findall(r'.*\{\d{1,2}\} (.*?) \.{3} skip(?::| )', output): skipped_testcases.append(match) |