12 lines
No EOL
183 B
INI
12 lines
No EOL
183 B
INI
# content of: tox.ini , put in same dir as setup.py
|
|
[tox]
|
|
envlist = py27, py35, py36
|
|
[testenv]
|
|
deps=pytest
|
|
commands=py.test test
|
|
|
|
[travis]
|
|
python =
|
|
2.7: py27
|
|
3.5: py35
|
|
3.6: py36 |