Skip to content

Commit

Permalink
Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wleoncio committed Jan 14, 2025
1 parent 0a96f3e commit 449c97a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
run: pip install -e .
- name: Lint with flake8
run: flake8 .
if: runner.os == 'ubuntu-latest'
- name: Test with pytest and coverage
run: pytest --cov=pCRscore -m "not slow"
if: runner.os != 'ubuntu-latest'
- name: Test with pytest without coverage
run: pytest -m "not slow"
- if: runner.os == 'ubuntu-latest'
name: Test with pytest and coverage
run: pytest --cov=pCRscore -m "not slow"
- if: runner.os != 'ubuntu-latest'
name: Test with pytest without coverage
run: pytest -m "not slow"
- name: Upload coverage to Codecov
if: runner.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4.0.1
Expand Down

0 comments on commit 449c97a

Please sign in to comment.