Skip to content

Commit a7472a5

Browse files
committed
test_tagged_unittests: -vv passes -v to the test itself
1 parent c7ae820 commit a7472a5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_tagged_unittests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ def test_tagged():
8383
if "-debug-java" in sys.argv:
8484
cmd.append("-debug-java")
8585
cmd += [RUNNER]
86+
if "-vv" in sys.argv:
87+
cmd += ['-v']
8688
for testpattern in working_test[1]:
8789
cmd.extend(["-k", testpattern])
8890
print("Running test:", working_test[0])

0 commit comments

Comments
 (0)