You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# content of: tox.ini , put in same dir as setup.py
|
|
[tox]
|
|
envlist = py27,py36
|
|
|
|
[testenv]
|
|
# install pytest in the virtualenv where commands will be executed
|
|
deps = pytest
|
|
commands =
|
|
# NOTE: you can run any command line tool here - not just tests
|
|
pytest
|