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 1840b64 commit 4e9e303Copy full SHA for 4e9e303
.github/workflows/tests.yml
@@ -28,6 +28,7 @@ concurrency:
28
29
jobs:
30
test:
31
+ name: Test for CXX/CUDA extensions on ${{ matrix.os }}
32
runs-on: ubuntu-latest
33
timeout-minutes: 60
34
steps:
@@ -78,7 +79,7 @@ jobs:
78
79
80
- name: Test with pytest
81
run: |
- make pytest
82
+ make test PYTESTOPTS="-k accelerate"
83
84
- name: Upload coverage to Codecov
85
uses: codecov/codecov-action@v3
@@ -90,8 +91,13 @@ jobs:
90
91
fail_ci_if_error: false
92
93
test-pure-python:
- runs-on: ubuntu-latest
94
+ name: Test for pure-Python on ${{ matrix.os }}
95
+ runs-on: ${{ matrix.os }}
96
97
+ strategy:
98
+ matrix:
99
+ os: [ubuntu-latest, windows-latest, macos-latest]
100
+ fail-fast: false
101
102
- name: Checkout
103
uses: actions/checkout@v3
0 commit comments