mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
64 lines
1.6 KiB
INI
64 lines
1.6 KiB
INI
[tox]
|
|
envlist = py35, py36, 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_* SNAPSHOT_* OPENSSL RTOOL_*
|
|
setenv = HOME = {envtmpdir}
|
|
commands =
|
|
mitmdump --version
|
|
pytest --timeout 60 --cov-report='' \
|
|
--cov=mitmproxy --cov=pathod \
|
|
--full-cov=mitmproxy/ --full-cov=pathod/ \
|
|
{posargs}
|
|
{env:CI_COMMANDS:python -c ""}
|
|
|
|
[testenv:docs]
|
|
changedir = docs
|
|
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
|
|
|
|
[testenv:lint]
|
|
commands =
|
|
mitmdump --version
|
|
flake8 --jobs 8 mitmproxy pathod examples test release
|
|
python test/filename_matching.py
|
|
rstcheck README.rst
|
|
mypy --ignore-missing-imports ./mitmproxy
|
|
mypy --ignore-missing-imports ./pathod
|
|
mypy --ignore-missing-imports --follow-imports=skip ./examples/simple/
|
|
|
|
[testenv:individual_coverage]
|
|
deps =
|
|
-rrequirements.txt
|
|
commands =
|
|
python test/individual_coverage.py
|
|
|
|
[testenv:wheel]
|
|
recreate = True
|
|
deps =
|
|
commands =
|
|
python setup.py -q bdist_wheel --dist-dir release/dist
|
|
pip install {posargs} release/dist/mitmproxy-{env:VERSION:}-py3-none-any.whl
|
|
# skip `mitmproxy --version` if SKIP_MITMPROXY is defined.
|
|
{env:SKIP_MITMPROXY:mitmproxy --version}
|
|
mitmdump --version
|
|
mitmweb --version
|
|
pathod --version
|
|
pathoc --version
|
|
|
|
[testenv:rtool]
|
|
passenv = SKIP_MITMPROXY SNAPSHOT_HOST SNAPSHOT_PORT SNAPSHOT_USER SNAPSHOT_PASS RTOOL_KEY
|
|
deps =
|
|
-rrequirements.txt
|
|
pyinstaller==3.3.1
|
|
twine==1.9.1
|
|
pysftp==0.2.9
|
|
|
|
commands =
|
|
mitmdump --version
|
|
python ./release/rtool.py {posargs}
|