File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
graalpython/com.oracle.graal.python.test/src/tests Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,11 @@ class TestTaggedUnittests(unittest.TestCase):
144
144
working_tests = working_tests [selected ::total ]
145
145
else :
146
146
selection = set (s .strip () for s in selection .split ("," ))
147
- working_tests = [x for x in working_tests if x in selection ]
147
+ working_tests = [x for x in working_tests if x [0 ] in selection ]
148
+ print ("-----------------------------------------------------------------------------------------------------------" )
149
+ print ("working tests: " )
150
+ print ([x [0 ] for x in working_tests ])
151
+ print ("-----------------------------------------------------------------------------------------------------------" )
148
152
149
153
for idx , working_test in enumerate (working_tests ):
150
154
fn = make_test_function (working_test )
You can’t perform that action at this time.
0 commit comments