diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..6285756 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[tool:pytest] +addopts = -v --cov blendfile --cov-report term-missing --ignore node_modules -x --ff tests/ + diff --git a/setup.py b/setup.py index b78076b..d42fb61 100644 --- a/setup.py +++ b/setup.py @@ -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, )