forked from torproject/onionbalance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
32 lines (27 loc) · 924 Bytes
/
tox.ini
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
26
27
28
29
30
31
32
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = style, py39, docs
[testenv]
deps = -rrequirements.txt
-rtest-requirements.txt
# Pass Chutney enviroment variables into tox virtual enviroments.
passenv = CHUTNEY_ONION_ADDRESS CHUTNEY_CLIENT_PORT TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
commands = py.test --cov-report=term-missing --cov=onionbalance {posargs}
[testenv:docs]
basepython=python3
changedir=docs
deps=sphinx
commands=
sphinx-build -W -b html -d {envtmpdir}/docs . {envtmpdir}/html
[testenv:style]
basepython=python3
deps=pylint
flake8
commands=pylint onionbalance {posargs: -E}
flake8 onionbalance
[flake8]
ignore = E501, E302, E251, E305, E261
exclude = onionbalance/hs_v3/ext/