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 462b1ba commit 714b047Copy full SHA for 714b047
.github/workflows/ci-test-reproducibility.yml
@@ -62,7 +62,7 @@ jobs:
62
fi
63
64
- name: Check test case count
65
- run: poetry run python .templates/check_test_cases.py --threshold=10
+ run: poetry run python .templates/check_test_cases.py --threshold=5 --max=100
66
67
- name: Backup existing problems
68
run: |
.templates/check_test_cases.py
@@ -82,7 +82,7 @@ def main(
82
typer.echo(f"Invalid max_results value: {max_results}", err=True)
83
raise typer.Exit(1)
84
85
- typer.echo(f"Files with ≤{threshold} test cases ({len(filtered_files)} total):")
+ typer.echo(f"Problems with ≤{threshold} test cases ({len(filtered_files)} total):")
86
for filename, count in filtered_files:
87
typer.echo(f"{filename}: {count} test cases")
88
0 commit comments