Skip to content

Commit ee0ed06

Browse files
committed
Fix --ignore argument parsing
1 parent 420d24c commit ee0ed06

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ def main():
794794
help="Interpret test file names relative to tagged test directory")
795795
parser.add_argument('-n', '--num-processes', type=int,
796796
help="Run tests in N subprocess workers. Adds crash recovery, output capture and timeout handling")
797-
parser.add_argument('--ignore', type=Path, nargs='*', default=[],
797+
parser.add_argument('--ignore', type=Path, action='append', default=[],
798798
help="Ignore path during collection (multi-allowed)")
799799
parser.add_argument('-f', '--failfast', action='store_true',
800800
help="Exit immediately after the first failure")

0 commit comments

Comments
 (0)