File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -74,15 +74,14 @@ def _form_test_id_mappings(self, test_list):
74
74
"""
75
75
test_mappings = {}
76
76
for testcase in test_list :
77
- if testcase .startswith ("tempest" ):
78
- # Search for any strings like '[smoke, gate]' in the test ID.
79
- match = re .search ('(\[.*\])' , testcase )
80
-
81
- if match :
82
- testcase = re .sub ('\[.*\]' , '' , testcase )
83
- test_mappings [testcase ] = match .group (1 )
84
- else :
85
- test_mappings [testcase ] = ""
77
+ # Search for any strings like '[smoke, gate]' in the test ID.
78
+ match = re .search ('(\[.*\])' , testcase )
79
+
80
+ if match :
81
+ testcase = re .sub ('\[.*\]' , '' , testcase )
82
+ test_mappings [testcase ] = match .group (1 )
83
+ else :
84
+ test_mappings [testcase ] = ""
86
85
return test_mappings
87
86
88
87
def _get_base_test_ids_from_list_file (self , list_location ):
You can’t perform that action at this time.
0 commit comments