Skip to content

Commit 2828df3

Browse files
committed
Try this
1 parent e29590b commit 2828df3

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@ jobs:
7474
run: uv sync --all-extras
7575

7676
- name: Run unit tests with coverage
77-
run: uv run pytest tests/unit/ -v --cov=drift/core --cov-report=xml
77+
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
7883
7984
- name: Upload coverage to Coveralls
8085
if: matrix.python-version == '3.9'

0 commit comments

Comments
 (0)