We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdd39cf commit 8015636Copy full SHA for 8015636
.github/workflows/tests.yml
@@ -28,12 +28,22 @@ jobs:
28
else
29
PIP_EXTRA='numpy==1.26.*'
30
fi
31
+
32
+ if [ "${{ matrix.python-version }}" == "3.9" ]; then
33
+ sed -i '/ndonnx/d' requirements-dev.txt
34
+ fi
35
python -m pip install -r requirements-dev.txt $PIP_EXTRA
36
37
- name: Run Tests
38
run: |
39
40
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
41
PYTEST_EXTRA=(-k "numpy and not jax and not torch and not dask and not sparse")
42
+ else
43
+ PYTEST_EXTRA=()
44
45
+ if [[ "${{ matrix.python-version }}" == "3.9" ]]; then
46
+ PYTEST_EXTRA+=(-k "not ndonnx")
47
48
pytest -v "${PYTEST_EXTRA[@]}"
49
0 commit comments