We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e29590b commit 2828df3Copy full SHA for 2828df3
1 file changed
.github/workflows/ci.yml
@@ -74,7 +74,12 @@ jobs:
74
run: uv sync --all-extras
75
76
- name: Run unit tests with coverage
77
- run: uv run pytest tests/unit/ -v --cov=drift/core --cov-report=xml
+ run: |
78
+ if [ "${{ matrix.python-version }}" = "3.9" ]; then
79
+ uv run pytest tests/unit/ -v --cov=drift/core --cov-report=xml
80
+ else
81
+ uv run pytest tests/unit/ -v
82
+ fi
83
84
- name: Upload coverage to Coveralls
85
if: matrix.python-version == '3.9'
0 commit comments