We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369a209 commit 9e324e1Copy full SHA for 9e324e1
1 file changed
justfile
@@ -84,18 +84,9 @@ integration-tests:
84
85
[group('test')]
86
test-coverage *args="":
87
- #!/usr/bin/env bash
88
- set -euo pipefail
89
- if [ -n "${USE_ACTIVE_VENV:-}" ]; then
90
- # When USE_ACTIVE_VENV is set, run coverage directly in the active venv
91
- uv run --active --extra test --group coverage python -m coverage run -m pytest {{args}}
92
- uv run --active --group coverage python -m coverage report
93
- else
94
- # Otherwise use the standard Evergreen workflow
95
- just setup-tests --cov
96
- just run-tests {{args}}
97
- just coverage-report
98
- fi
+ just setup-tests --cov
+ just run-tests {{args}}
+ just coverage-report
99
100
[group('coverage')]
101
coverage-report:
0 commit comments