Skip to content

Commit

Permalink
Update how tests are run since running them with the nosetests with-c…
Browse files Browse the repository at this point in the history
…overage command was not using the coveragerc file and checking coverage in other files as well
  • Loading branch information
eheinrich committed Jan 29, 2021
1 parent f9191a6 commit 8c9ed71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Expand Up @@ -24,11 +24,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coveralls 'numpy<1.20'
pip install coveralls coverage 'numpy<1.20'
pip install -r requirements.pip
pip install -r test_requirements.pip
- name: Run tests
run: nosetests --with-coverage
run: coverage run -m nose
- name: Coveralls report
run: coveralls --service=github
env:
Expand Down

0 comments on commit 8c9ed71

Please sign in to comment.