We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd39cf commit d0b5d58Copy full SHA for d0b5d58
.github/workflows/tests.yml
@@ -28,13 +28,21 @@ 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
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
40
PYTEST_EXTRA=(-k "numpy and not jax and not torch and not dask and not sparse")
41
42
43
+ if [[ "${{ matrix.python-version }}" == "3.9" ]]; then
44
+ PYTEST_EXTRA+=(-k "not ndonnx")
45
46
pytest -v "${PYTEST_EXTRA[@]}"
47
48
# Make sure it installs
0 commit comments