Skip to content

Commit 708f0de

Browse files
coveralls first steps trial-and-error
1 parent 47b2d97 commit 708f0de

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ jobs:
121121
TOXPYTHON: '${{ matrix.toxpython }}'
122122
run: >
123123
tox -e ${{ matrix.tox_env }} -v
124+
- uses: coverallsapp/github-action@v2
124125

125126
deploy_docs:
126127
name: Deploy docs to GitHub Pages

tox.ini

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ basepython =
2828
py310: {env:TOXPYTHON:python3.10}
2929
py311: {env:TOXPYTHON:python3.11}
3030
py312: {env:TOXPYTHON:python3.12}
31-
{bootstrap,clean,check,report,docs}: {env:TOXPYTHON:python3}
31+
{bootstrap,clean,check,report,docs,coveralls}: {env:TOXPYTHON:python3}
3232
setenv =
3333
PYTHONPATH={toxinidir}/tests
3434
PYTHONUNBUFFERED=yes
@@ -74,7 +74,10 @@ commands =
7474
coverage html
7575

7676
[testenv:clean]
77-
commands = coverage erase
77+
commands =
78+
python setup.py clean
79+
coverage erase
7880
skip_install = true
7981
deps =
82+
setuptools
8083
coverage

0 commit comments

Comments
 (0)