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