mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
53 lines
1.1 KiB
INI
53 lines
1.1 KiB
INI
[tox]
|
|
envlist =
|
|
docs, packaging, lint-py2, lint-py3, mypy,
|
|
py27, py33, py34, py35, py36, py37, pypy
|
|
|
|
[testenv]
|
|
setenv =
|
|
# This is required in order to get UTF-8 output inside of the subprocesses
|
|
# that our tests use.
|
|
LC_CTYPE = en_US.UTF-8
|
|
deps = -r{toxinidir}/dev-requirements.txt
|
|
commands = py.test --timeout 300 []
|
|
install_command = python -m pip install {opts} {packages}
|
|
|
|
[testenv:docs]
|
|
deps = sphinx == 1.6.1
|
|
basepython = python2.7
|
|
commands =
|
|
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
|
|
sphinx-build -W -b man -d {envtmpdir}/doctrees docs docs/_build/man
|
|
|
|
[testenv:packaging]
|
|
deps =
|
|
check-manifest
|
|
readme_renderer
|
|
commands =
|
|
check-manifest
|
|
python setup.py check -m -r -s
|
|
|
|
[lint]
|
|
deps =
|
|
flake8==3.3.0
|
|
isort==4.2.5
|
|
commands =
|
|
flake8 .
|
|
isort --recursive --check-only --diff pip tests
|
|
|
|
[testenv:lint-py2]
|
|
basepython = python2
|
|
deps = {[lint]deps}
|
|
commands = {[lint]commands}
|
|
|
|
[testenv:lint-py3]
|
|
basepython = python3
|
|
deps = {[lint]deps}
|
|
commands = {[lint]commands}
|
|
|
|
[testenv:mypy]
|
|
basepython = python3
|
|
deps = mypy
|
|
commands =
|
|
mypy -p pip
|
|
mypy -p pip -2
|