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.
25 lines
497 B
25 lines
497 B
[tox] |
|
skipsdist=true |
|
|
|
[testenv] |
|
commands = |
|
{envpython} -V |
|
{envpython} -m compileall speedtest.py |
|
{envpython} speedtest.py |
|
{envpython} speedtest.py --source 172.17.0.1 |
|
{envpython} tests/scripts/source.py |
|
|
|
[testenv:flake8] |
|
basepython=python |
|
deps=flake8 |
|
commands = |
|
{envpython} -V |
|
flake8 speedtest.py |
|
|
|
[testenv:pypy] |
|
commands = |
|
pypy -V |
|
pypy -m compileall speedtest.py |
|
pypy speedtest.py |
|
pypy speedtest.py --source 172.17.0.1 |
|
pypy tests/scripts/source.py
|
|
|