summaryrefslogtreecommitdiff
path: root/tox.ini
blob: c5e596381f46298530905548fd1d46a8c45bb5e5 (plain)
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
33
34
35
36
37
38
39
40
41
42
[tox]
envlist =
    docs, packaging, pep8, py3pep8, py26, 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:py26]
install_command = pip install {opts} {packages}

[testenv:docs]
deps = sphinx
basepython = python2.7
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html

[testenv:packaging]
deps =
    check-manifest
    readme_renderer
commands =
    check-manifest
    python setup.py check -m -r -s

[testenv:pep8]
basepython = python2.7
deps = flake8==2.3.0
commands = flake8 .

[testenv:py3pep8]
basepython = python3.3
deps = flake8==2.3.0
commands = flake8 .

[flake8]
exclude = .tox,*.egg,build,_vendor,data
select = E,W,F