Skip to content

Commit

Permalink
πŸš‡πŸ“š Use correct coverage config in CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Aug 17, 2022
1 parent b76c7b9 commit 6f48511
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-nightly-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
pip freeze | grep flake8
- name: Run tests
run: |
python -m pytest -vv --cov=./ --cov-report term --cov-report xml --cov-config .coveragerc tests
python -m pytest -vv --cov=./ --cov-report term --cov-report xml --cov-config=pyproject.toml tests
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
pip freeze | grep flake8
- name: Run tests
run: |
python -m pytest -vv --cov=./ --cov-report term --cov-report xml --cov-config .coveragerc tests
python -m pytest -vv --cov=./ --cov-report term --cov-report xml --cov-config=pyproject.toml tests
- name: Codecov Upload
uses: codecov/codecov-action@v3
with:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
pip freeze | grep flake8
- name: Run tests
run: |
python -m pytest -vv --cov=./ --cov-report term --cov-report xml --cov-config .coveragerc tests
python -m pytest -vv --cov=./ --cov-report term --cov-report xml --cov-config=pyproject.toml tests
- name: Codecov Upload
uses: codecov/codecov-action@v3
with:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
python -m pip install -U -r requirements_dev.txt
- name: Run tests
run: |
python -m pytest --cov=./ --cov-report term --cov-report xml --cov-config .coveragerc tests
python -m pytest --cov=./ --cov-report term --cov-report xml --cov-config=pyproject.toml tests
- name: Codecov Upload
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 6f48511

Please sign in to comment.