diff --git a/refstack_client/list_parser.py b/refstack_client/list_parser.py index 564c18a..db60f35 100644 --- a/refstack_client/list_parser.py +++ b/refstack_client/list_parser.py @@ -83,7 +83,7 @@ class TestListParser(object): """ test_mappings = {} for testcase in test_list: - if testcase.startswith("tempest"): + if testcase != "": # Search for any strings like '[smoke, gate]' in the test ID. match = re.search(r'(\[.*\])', testcase)