Skip to content

Commit

Permalink
Skip coverage in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
enekomartinmartinez committed Jun 27, 2024
1 parent ad41aa8 commit 119b43e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,15 @@ jobs:
pip install -U wheel
pip install --prefer-binary -r tests/requirements.txt
pip install --prefer-binary -e .
- name: Test
run: |
pytest tests/ -n 2
if: ${{ matrix.python-version != 3.9 || matrix.os != 'ubuntu-latest' }}
- name: Test and coverage
run: |
pytest tests/ --cov=pysd -n 2
coverage xml
if: ${{ matrix.python-version == 3.9 && matrix.os == 'ubuntu-latest' }}
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
Expand Down

0 comments on commit 119b43e

Please sign in to comment.