Implement a basic tox.ini based on requirements.txt

This commit is contained in:
Raphael Pierzina 2015-11-08 21:52:29 +01:00
parent 01d756d57d
commit ae9e912b62

7
tox.ini Normal file
View File

@ -0,0 +1,7 @@
[tox]
skipsdist = true
envlist = py27,py34,py35
[testenv]
deps = -rrequirements.txt
commands = py.test {posargs:tests}