There was an error while loading. Please reload this page.
1 parent ab52265 commit b5c12aeCopy full SHA for b5c12ae
1 file changed
.github/workflows/ci-testing.yml
@@ -26,15 +26,15 @@ jobs:
26
pip install .[dev]
27
28
- name: Run the test suite \w coverage
29
- if: ${{ matrix.python-version }} == "3.11"
+ if: contains(matrix.python-version, '3.12')
30
run: pytest --cov=aiidalab_alc --cov-report xml:coverage.xml
31
32
- name: Run the test suite without coverage
33
- if: ${{ matrix.python-version }} != "3.11"
+ if: ${{ matrix.python-version }} != '3.12'
34
run: pytest
35
36
- name: Report coverage to Coveralls
37
38
uses: coverallsapp/github-action@v2
39
with:
40
file: coverage.xml
0 commit comments