Add tox.ini file.

This commit is contained in:
Brian May 2015-12-07 13:17:09 +11:00
parent 1ae4fce6b3
commit bea723c598

16
tox.ini Normal file
View File

@ -0,0 +1,16 @@
[tox]
downloadcache = {toxworkdir}/cache/
envlist =
py27,
py35,
[testenv]
basepython =
py27: python2.7
py35: python3.5
commands =
py.test
deps =
pytest
mock
setuptools>=17.1