We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c7055f commit b13276dCopy full SHA for b13276d
1 file changed
.github/workflows/tests.yml
@@ -47,12 +47,23 @@ jobs:
47
- name: Run tests on Linux
48
if: ${{ startsWith(runner.os, 'linux') }}
49
run: |
50
- xvfb-run --auto-servernum hatch run cov:test
+ # cov: is not installable on free-threaded yet
51
+ if [[ "${{ matrix.python-version }}" == *t ]]; then
52
+ target="test:test"
53
+ else
54
+ target="cov:test"
55
+ fi
56
+ xvfb-run --auto-servernum hatch run $target
57
58
- name: Run tests on other platforms
59
if: ${{ !startsWith(runner.os, 'linux') }}
60
- hatch run cov:nowarn
61
62
+ target="test:nowarn"
63
64
+ target="cov:nowarn"
65
66
+ hatch run $target
67
68
- uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1
69
0 commit comments