mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
25 lines
607 B
INI
25 lines
607 B
INI
[tox]
|
|
envlist = py35, docs, lint
|
|
skipsdist = True
|
|
toxworkdir={env:TOX_WORK_DIR:.tox}
|
|
|
|
[testenv]
|
|
deps =
|
|
{env:CI_DEPS:}
|
|
-rrequirements.txt
|
|
passenv = CODECOV_TOKEN CI CI_* TRAVIS TRAVIS_* APPVEYOR APPVEYOR_*
|
|
setenv = HOME = {envtmpdir}
|
|
commands =
|
|
py.test --timeout 60 {posargs}
|
|
{env:CI_COMMANDS:python -c ""}
|
|
|
|
[testenv:docs]
|
|
changedir = docs
|
|
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
|
|
|
|
[testenv:lint]
|
|
commands =
|
|
flake8 --jobs 8 --count mitmproxy pathod examples test
|
|
rstcheck README.rst
|
|
mypy --silent-imports mitmproxy/addonmanager.py mitmproxy/proxy/protocol/
|