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 fe77c35 commit 40412b0Copy full SHA for 40412b0
.github/workflows/main.yml
@@ -58,11 +58,14 @@ jobs:
58
- uses: actions/checkout@v4
59
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
60
61
+ - name: make hatch use our Python
62
+ run: |
63
+ echo "HATCH_PYTHON=$(which python3)" >> $GITHUB_ENV
64
+
65
- name: disable warnings on pypy or windows
66
if: ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.os, 'windows') }}
67
run: |
68
echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -W default" >> $GITHUB_ENV
- shell: bash
69
70
- name: disable coverage on pypy
71
if: ${{ startsWith(matrix.python-version, 'pypy') }}
0 commit comments