diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-12-11 12:38:46 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-12-11 12:38:46 +0900 |
commit | 0352968cffd8cf03ff1d3509c28665d9f8e60c5c (patch) | |
tree | 210cf38751d7f90fb825aa025ba92bfc2dfcb0b8 | |
parent | 54551b1f049c5576c3d26b9e0d07a14f545d34af (diff) | |
download | buildstream-0352968cffd8cf03ff1d3509c28665d9f8e60c5c.tar.gz |
Include coverage report in ./setup.py test invocations
-rw-r--r-- | setup.cfg | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,7 @@ test=pytest [tool:pytest] -addopts = --verbose --basetemp ./tmp --pep8 +addopts = --verbose --basetemp ./tmp --pep8 --cov=buildstream --cov-report term-missing python_files = tests/*/*.py pep8maxlinelength = 119 pep8ignore = @@ -57,7 +57,9 @@ setup(name='buildstream', ], setup_requires=['pytest-runner'], tests_require=['pep8', + 'coverage', 'pytest-datafiles', 'pytest-pep8', + 'pytest-cov', 'pytest'], zip_safe=False) |