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 b361eb0 commit 978f061Copy full SHA for 978f061
.github/workflows/test.yml
@@ -31,7 +31,7 @@ jobs:
31
32
- name: Check test count
33
run: |
34
- TEST_COUNT=$(uv run pytest tests/ --collect-only -q | grep -c "test_")
+ TEST_COUNT=$(uv run pytest tests/ --collect-only -q | grep "<Function test_" | wc -l | tr -d ' ')
35
echo "Found $TEST_COUNT tests"
36
if [ "$TEST_COUNT" -ne 7 ]; then
37
echo "Expected 7 tests, found $TEST_COUNT"
0 commit comments