File tree Expand file tree Collapse file tree 2 files changed +1685
-2
lines changed
graalpython/com.oracle.graal.python.test/src/tests Expand file tree Collapse file tree 2 files changed +1685
-2
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,8 @@ def collect_working_tests():
85
85
def make_test_function (working_test ):
86
86
testmod = working_test [0 ].rpartition ("." )[2 ]
87
87
88
- def test_tagged (max_patterns = 100 ):
88
+ def test_tagged ():
89
+ max_patterns = 250
89
90
for working_test_group in grouper (working_test [1 ], max_patterns ):
90
91
cmd = [sys .executable ]
91
92
if "--inspect" in sys .argv :
@@ -96,7 +97,8 @@ def test_tagged(max_patterns=100):
96
97
if "-vv" in sys .argv :
97
98
cmd += ['-v' ]
98
99
for testpattern in working_test_group :
99
- cmd .extend (["-k" , testpattern ])
100
+ if testpattern :
101
+ cmd .extend (["-k" , testpattern ])
100
102
print ("Running test:" , working_test [0 ])
101
103
testfile = os .path .join (os .path .dirname (test .__file__ ), "%s.py" % testmod )
102
104
if not os .path .isfile (testfile ):
You can’t perform that action at this time.
0 commit comments