Skip to content

Commit e29bd88

Browse files
committed
coverage fix attempt 2
1 parent bf8fee3 commit e29bd88

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Test with tox
8383
run: tox -e ${{ matrix.tox_env }}
8484
- name: Prepare artifacts
85-
run: mkdir -p .coverage-data && mv .coverage .coverage-data/
85+
run: mkdir -p .coverage-data && mv .coverage.* .coverage-data/
8686
- uses: actions/upload-artifact@master
8787
with:
8888
name: coverage-data

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.postgres
66
.python-version
77
.tox
8-
.coverage
8+
.coverage.*
99
**__pycache__**
1010
*.pyc
1111
/dist/

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ deps =
2727
wt28: wagtail>=2.8,<2.9
2828

2929
commands =
30-
coverage erase
3130
coverage run manage.py test
32-
coverage combine
33-
coverage html
34-
coverage report
3531

3632
basepython =
3733
py36: python3.6

0 commit comments

Comments
 (0)