summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: faae3bc23d2a9f2d574275a78c85f5791c5dc187 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tox]
envlist = py27,py34,doc,sphinx

[testenv]
setenv =
    PYTHONPATH = {envsitepackagesdir}
deps =
    pytest
    coverage
    -r{toxinidir}/requirements.txt
    cryptography
sitepackages = True
commands =
    coverage run -m pytest --capture=no --strict {posargs}
    coverage report -m

[testenv:pep8]
basepython = python2.7
deps =
    flake8
    flake8-import-order
    pep8-naming
sitepackages = True
commands =
    flake8 {posargs}

[testenv:py3pep8]
basepython = python3.4
deps =
    flake8
    flake8-import-order
    pep8-naming
sitepackages = True
commands =
    flake8 {posargs}

[testenv:doc]
basepython = python2.7
deps =
    doc8
    docutils
    markdown
sitepackages = True
commands =
    doc8 --allow-long-titles README
    python setup.py check --restructuredtext --metadata --strict
    markdown_py README.md -f {toxworkdir}/README.md.html
    markdown_py API.md -f {toxworkdir}/API.md.html

[testenv:sphinx]
basepython = python2.7
sitepackages = True
changedir = docs/source
deps =
    sphinx < 1.3.0
commands =
    sphinx-build -v -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html

[pytest]
norecursedirs = build .tox
python_files = tests/*.py custodia/*.py

[flake8]
exclude = .tox,*.egg,dist,build,docs/source
show-source = true
max-line-length = 79
ignore = N802
application-import-names = custodia