From review (by Sybren Stüvel): pytest-cov

This commit is contained in:
Dalai Felinto
2016-12-02 10:41:53 +01:00
parent 76e3428d87
commit 23ca9a5a72
2 changed files with 6 additions and 2 deletions

3
setup.cfg Normal file
View File

@@ -0,0 +1,3 @@
[tool:pytest]
addopts = -v --cov blendfile --cov-report term-missing --ignore node_modules -x --ff tests/

View File

@@ -10,7 +10,8 @@ setup(
license='GNU General Public License v2 or later (GPLv2+)',
packages=find_packages('.', exclude=['tests']),
tests_require=[
'pytest',
'pytest>=2.9.1',
'pytest-cov>=2.2.1',
],
zip_safe=False,
zip_safe=True,
)