Skip to content

Commit a83f675

Browse files
danhphantwiecki
authored andcommitted
Use matrix.exclude instead of matrix.include
1 parent 99a84db commit a83f675

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- uses: pre-commit/action@v3.0.0
5959

6060
test:
61-
name: "Test py${{ matrix.python-version }}: ${{ matrix.part }}"
61+
name: "Test py${{ matrix.python-version }} : fast-compile ${{ matrix.fast-compile }} : float32 ${{ matrix.float32 }} : ${{ matrix.part }}"
6262
needs:
6363
- changes
6464
- style
@@ -81,6 +81,14 @@ jobs:
8181
- "tests/tensor/test_math.py"
8282
- "tests/tensor/test_math_scipy.py"
8383
- "tests/tensor/test_elemwise.py tests/tensor/rewriting/test_basic.py tests/tensor/rewriting/test_math.py"
84+
exclude:
85+
- python-version: "3.7"
86+
fast-compile: 0
87+
float32: 1
88+
- python-version: "3.9"
89+
fast-compile: 1
90+
- python-version: "3.9"
91+
float32: 1
8492
steps:
8593
- uses: actions/checkout@v3
8694
with:
@@ -231,4 +239,4 @@ jobs:
231239
uses: codecov/codecov-action@v3
232240
with:
233241
directory: ./coverage/
234-
fail_ci_if_error: true
242+
fail_ci_if_error: true

0 commit comments

Comments
 (0)