Merge "Update packaging JJB param defaults"
[releng/builder.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = coala,docs,pep8,prefix,robot
4 skipsdist = true
5
6 [testenv:coala]
7 basepython = python3
8 deps =
9     coala==0.11
10     coala-bears==0.11
11     # Requests 2.16 breaks dependencies
12     requests<2.16
13     nodeenv==1.1.2
14 commands =
15     nodeenv -p
16     npm install --global write-good
17     python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger
18     coala --non-interactive
19
20 [testenv:docs]
21 deps = -rdocs/requirements.txt
22 commands = sphinx-build -b html -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
23
24 [testenv:pep8]
25 deps = flake8
26 commands = flake8 scripts/
27
28 [testenv:prefix]
29 commands = ./check_prefix.sh
30
31 [testenv:robot]
32 commands = ./check_robot.sh
33