We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a487020 commit ce4e237Copy full SHA for ce4e237
1 file changed
.github/workflows/hsp2-pip-install-test.yml
@@ -38,6 +38,7 @@ jobs:
38
include:
39
- python-version: "3.11"
40
pandas-version: "pandas>2.0"
41
+ coverage: true
42
43
pandas-version: "pandas>1.5,<2.0"
44
steps:
@@ -51,12 +52,14 @@ jobs:
51
52
run: |
53
# install the hsp2 executable
54
pip install .[dev]
- - if: ${{ matrix.pandas-version }}
55
+ - if: matrix.pandas-version
56
run: pip install "${{ matrix.pandas-version }}"
- - name: Test with pytest
57
+ - if: matrix.coverage
58
59
# python coverage
60
NUMBA_DISABLE_JIT=1 pytest --cov --cov-branch --cov-report term-missing
61
+ - if: ! matrix.coverage
62
+ run: pytest
63
64
test-cmd:
65
runs-on: ubuntu-latest
0 commit comments