tox tests

This commit is contained in:
Scisco
2016-03-25 16:34:11 -04:00
parent 95e9a46eeb
commit 184a0943dd
2 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,8 @@
include AUTHORS.txt
include LICENSE
include README.md
include requirements.txt
include requirements-dev.txt
recursive-include tests *
recursive-exclude * __pycache__

11
tox.ini
View File

@@ -1,13 +1,16 @@
[tox]
envlist =
py27
py35
envlist = py27,py34,py35
[testenv]
deps =
wheel
pip>=8.1.1
jsonschema
mock>=1.3.0
nose>=1.3.7
pytest
commands =
py.test
pip install -r requirements.txt
pip install -e .
python setup.py test
install_command=pip install --process-dependency-links --allow-external --allow-unverified {opts} {packages}