Skip to content

Commit b8172c0

Browse files
committed
fix coverage CI
1 parent 981bb25 commit b8172c0

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ jobs:
1313
with:
1414
python-version: 3.7
1515
- name: Install dependencies
16-
run: |
17-
python -m pip install --upgrade pip
18-
pip install tox codecov
16+
run: pip install tox codecov
1917
- name: Test with tox
20-
run: tox -e py37-alldeps-linux,report
18+
run: tox -e py37-alldeps,report
2119
- name: Upload test coverage
2220
run: codecov -t ${{ secrets.CODECOV_TOKEN }} -f .coverage.xml

.github/workflows/tox.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ jobs:
2727
- name: Register Python problem matcher
2828
run: echo "::add-matcher::.github/workflows/matchers/pytest.json"
2929
- name: Install dependencies
30-
run: |
31-
python -m pip install --upgrade pip
32-
pip install tox pytest-github-actions-annotate-failures
30+
run: pip install tox pytest-github-actions-annotate-failures
3331
- name: Test with tox using minimal dependencies
3432
run: tox -e ${{ env.PY_VERSION }}-mindeps
3533
- name: Clean

0 commit comments

Comments
 (0)