Added unit testing with py.test

This commit is contained in:
Sybren A. Stüvel 2018-02-22 12:45:42 +01:00
parent dcda85c3e6
commit 03bf2ac69f
3 changed files with 22 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*.pyc
__pycache__
/*.egg-info/
/.cache
/.coverage

12
requirements-dev.txt Normal file
View File

@ -0,0 +1,12 @@
# Primary requirements
-e .
pytest==3.4.1
pytest-cov==2.5.1
# Secondary requirements
attrs==17.4.0
coverage==4.5.1
pluggy==0.6.0
py==1.5.2
six==1.11.0

5
setup.cfg Normal file
View File

@ -0,0 +1,5 @@
[tool:pytest]
addopts = -v --cov blender_asset_tracer --cov-report term-missing
[pep8]
max-line-length = 100