We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9764307 commit 25005b5Copy full SHA for 25005b5
jote/jote.py
@@ -450,6 +450,8 @@ def main() -> None:
450
arg_parser.error('--test requires --job')
451
if args.job and args.collection is None:
452
arg_parser.error('--job requires --collection')
453
+ if args.wipe and args.keep_results:
454
+ arg_parser.error('Cannot use --wipe and --keep-results')
455
456
# Args are OK if we get here.
457
total_fail_count: int = 0
0 commit comments