We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1313010 commit 20ad530Copy full SHA for 20ad530
MANIFEST.in
@@ -14,6 +14,7 @@ include requirements*.txt
14
include tox.ini
15
include pytest.ini
16
include mypy.ini
17
+include .coveragerc
18
include README.md
19
include LICENSE
20
include MANIFEST.in
tox.ini
@@ -55,6 +55,7 @@ passenv =
55
CI
56
TRAVIS
57
TRAVIS_*
58
+ CODECOV_*
59
basepython =
60
py36: python3.6
61
py37: python3.7
@@ -67,3 +68,5 @@ basepython =
67
68
deps = .[test]
69
commands =
70
pytest -v --maxfail=2 --cov-report=xml --cov=bookstore -W always bookstore/tests/
71
+commands_post =
72
+ codecov
0 commit comments