Bump Javassist to 3.26.0-GA
[odlparent.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = coala,docs
4 skipsdist = true
5
6 [testenv:coala]
7 basepython = python3
8 deps =
9     coala==0.11
10     coala-bears==0.11
11     pygments~=2.3.1
12     # Requests 2.16 breaks dependencies
13     requests<2.16
14 commands =
15     python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger
16     coala --non-interactive
17
18 [testenv:docs]
19 basepython = python3
20 deps = -rdocs/requirements.txt
21 commands =
22     sphinx-build -W -n -b html -d {envtmpdir}/doctrees ./docs/ {envtmpdir}/html