Skip to content

Commit

Permalink
Merge pull request #532 from GAA-UAM/fix/codecov
Browse files Browse the repository at this point in the history
Fix code coverage.
  • Loading branch information
vnmabus committed Apr 15, 2023
2 parents abb9651 + 0315fe6 commit 2b04adb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:

- name: Install dependencies
run: |
pip3 install codecov pytest-cov || pip3 install --user codecov pytest-cov;
pip3 install pytest-cov || pip3 install --user pytest-cov;
- name: Run tests
run: |
pip3 debug --verbose .
pip3 install numba
pip3 install ".[test]"
coverage run --source=skfda/ -m pytest;
pytest --cov=skfda/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

0 comments on commit 2b04adb

Please sign in to comment.