Skip to content

Commit 9e7e91a

Browse files
committed
make sure tox run creates coverage.xml for codecov
1 parent 208da54 commit 9e7e91a

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.0.1 (2020-08-27)
2+
------------------------
3+
- add coverage.xml output from tox runs.
4+
15
1.0.0.post2 (2020-08-21)
26
------------------------
37
- fix pre-commit (#14)

python_seed/template/module/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist = py36,py37,py38
44
[testenv]
55
extras = test
66
commands=
7-
python -m pytest --cov pyseed --cov-report term-missing --ignore=venv
7+
python -m pytest --cov pyseed --cov-report xml --cov-report term-missing --ignore=venv
88

99
# Lint
1010
[flake8]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="python-seed",
18-
version="1.0.0.post2",
18+
version="1.0.1",
1919
description="Create skeleton of python project",
2020
long_description=readme,
2121
long_description_content_type="text/markdown",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist = py36,py37,py38
44
[testenv]
55
extras = test
66
commands=
7-
python -m pytest --cov python_seed --cov-report term-missing --ignore=python_seed/template/
7+
python -m pytest --cov python_seed --cov-report xml --cov-report term-missing --ignore=python_seed/template/
88

99
# Lint
1010
[flake8]

0 commit comments

Comments
 (0)