Add tox configuration

This commit is contained in:
Gergely Polonkai 2017-01-16 11:42:08 +01:00
부모 4105934142
커밋 e8af7e15a6
2개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제

3
.gitignore vendored
파일 보기

@ -3,3 +3,6 @@
__pycache__/
*.pyc
/Flask_Logging_Extras.egg-info/
/.tox/
.coverage
/htmlcov/

8
tox.ini Normal file
파일 보기

@ -0,0 +1,8 @@
[tox]
envlist = py27, py33, py34, py35, py36
[testenv]
commands =
coverage run --source flask_logging_extras/ -m unittest discover --start-directory tests
coverage report -m
deps = coverage