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 d7d08ca commit 15e2f55Copy full SHA for 15e2f55
1 file changed
.github/workflows/tests.yml
@@ -54,16 +54,18 @@ jobs:
54
python-version: ${{ matrix.python-version }}
55
56
- name: Install Hatch
57
- uses: pypa/hatch@install
+ # Commented for now due to high failure rates at the moment.
58
+ # uses: pypa/hatch@install
59
+ run: python -m pip install --upgrade hatch
60
61
- name: Run tests
- run: hatch test
62
+ run: hatch test -py ${{ matrix.python-version }}
63
64
- name: Run build test for scikit-build-core
- run: hatch run test-build:scikit-build-core
65
+ run: hatch run test-build:scikit-build-core -py ${{ matrix.python-version }}
66
67
- name: Run build test for meson-python
- run: hatch run test-build:meson
68
+ run: hatch run test-build:meson -py ${{ matrix.python-version }}
69
continue-on-error: true
70
71
tests-pass:
0 commit comments