File: tox.ini

package info (click to toggle)
speedtest-cli 2.1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 188 kB
  • sloc: python: 1,530; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[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