Add tox configuration

このコミットが含まれているのは:
Gergely Polonkai 2017-01-16 11:42:08 +01:00
コミット e8af7e15a6
2個のファイルの変更11行の追加0行の削除

3
.gitignore vendored
ファイルの表示

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

8
tox.ini ノーマルファイル
ファイルの表示

@ -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