From 6b1d76c3cec7e80f45f85c3a4cba1c5706d8a52b Mon Sep 17 00:00:00 2001 From: Andrew Davison Date: Mon, 16 Feb 2026 14:16:43 +0100 Subject: [PATCH] Only run coverage on Python 3.14 to avoid CPython 3.12 tracing bug This fixes #87 --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ce3ac84..e4584eed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,4 +33,8 @@ jobs: run: | pip install pytest pytest-cov pip install ./target - pytest -v --cov=openminds --cov-report term pipeline/tests + if [ "${{ matrix.python-version }}" = "3.14" ]; then + pytest -v --cov=openminds --cov-report term pipeline/tests + else + pytest -v pipeline/tests + fi