Test all Python versions using tox.
This commit is contained in:
parent
45cea44fac
commit
2455ba6e62
2 changed files with 12 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,6 @@
|
|||
*.pyc
|
||||
build
|
||||
src/*.egg-info
|
||||
|
||||
.eggs
|
||||
.tox
|
||||
|
|
9
tox.ini
Normal file
9
tox.ini
Normal file
|
@ -0,0 +1,9 @@
|
|||
[tox]
|
||||
envlist = py27,py35,pypy
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
.[test]
|
||||
commands =
|
||||
python setup.py test -q
|
||||
|
Loading…
Reference in a new issue