diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ea69d01d0..b99cccdfe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,12 @@ jobs: run: uv python install ${{ matrix.python-version }} - name: Install the project + if: matrix.python-version != '3.13' run: uv sync --dev --all-extras + - name: Install the project (Python 3.13) + if: matrix.python-version == '3.13' + run: uv sync --dev # Skip all-extras for Python 3.13 due to onnxruntime compatibility + - name: Run tests run: uv run pytest --block-network --timeout=60 -vv