Skip to content

Commit 133ef74

Browse files
Merge pull request #88 from apdavison/ci-speedup
CI speedup: only run coverage on Python 3.14 to avoid CPython 3.12 tracing bug
2 parents 912c486 + 6b1d76c commit 133ef74

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,8 @@ jobs:
3333
run: |
3434
pip install pytest pytest-cov
3535
pip install ./target
36-
pytest -v --cov=openminds --cov-report term pipeline/tests
36+
if [ "${{ matrix.python-version }}" = "3.14" ]; then
37+
pytest -v --cov=openminds --cov-report term pipeline/tests
38+
else
39+
pytest -v pipeline/tests
40+
fi

0 commit comments

Comments
 (0)