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 b5546bd commit 2a2afa4Copy full SHA for 2a2afa4
.github/workflows/test.yml
@@ -18,8 +18,6 @@ jobs:
18
pyver: '3.10'
19
- os: 'windows'
20
pyver: '3.11'
21
- - os: 'windows'
22
- pyver: '3.12'
23
runs-on: ${{ matrix.os }}-latest
24
name: ${{ matrix.os }} | ${{ matrix.pyver }}
25
steps:
@@ -33,3 +31,10 @@ jobs:
33
31
run: pip install .
34
32
- name: Run tests
35
run: make test
+ continue-on-error: true
+ - name: Upload test results on failure
36
+ if: failure()
37
+ uses: actions/upload-artifact@v4
38
+ with:
39
+ name: test-results
40
+ path: tests/results
0 commit comments