speedtest-cli/tox.ini

26 lines
553 B
INI

[tox]
skipsdist=true
[testenv]
commands =
{envpython} -V
{envpython} -m compileall speedtest.py
{envpython} speedtest.py
{envpython} speedtest.py --source 172.17.0.1
bash -c \'{envpython} speedtest.py --source 127.0.0.1 || true\'
[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
bash -c \'pypy speedtest.py --source 127.0.0.1 || true\'