speedtest-cli-pub/tox.ini
Matt Martz 5f6267a489 foo
2018-01-02 16:36:20 -06:00

26 lines
529 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
{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
pypy speedtest.py --source 127.0.0.1 || true