Skip to content

Commit

Permalink
Fix TEST_UNSKIP in pass_rate (#3030)
Browse files Browse the repository at this point in the history
Do not require `TEST_UNSKIP` in `pass_rate.py`, assume it is false by
default.

Fixes #3029.
  • Loading branch information
pbchekin authored Dec 17, 2024
1 parent 571b5b8 commit 6e466f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pass_rate.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def parse_report(report_path: pathlib.Path, skiplist_dir: pathlib.Path) -> Repor
pass
stats.fixme += len(testsuite_fixme_tests)

test_unskip = os.getenv('TEST_UNSKIP')
test_unskip = os.getenv('TEST_UNSKIP', 'false')
if test_unskip not in ('true', 'false'):
raise ValueError('Error: please set TEST_UNSKIP true or false')
if test_unskip == 'false':
Expand Down

0 comments on commit 6e466f4

Please sign in to comment.