Change ODL port from 6633 to 6653
[integration/test.git] / tox.ini
1 [tox]
2 minversion = 1.6.0
3 envlist = coala,pep8,tidy
4 # TODO: Include docs when it starts performing strict checks.
5 skipsdist = true
6
7 [testenv:coala]
8 basepython = python3
9 deps =
10     coala==0.11.0
11     coala-bears==0.11.0
12     requests==2.15.1
13 commands =
14     python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger
15     coala --non-interactive
16
17 [testenv:docs]
18 deps = -rdocs/requirements.txt
19 commands =
20     sphinx-build -W -n -b html -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
21
22 [testenv:tidy]
23 deps = robotframework
24 commands = python ./tools/robot_check/tidytool.py diff csit tools
25
26 [testenv:pep8]
27 deps =
28     flake8~=3.5.0
29 commands = flake8
30
31 [flake8]
32 show-source = True
33 max-line-length = 120
34
35 # # - Select E121, E123, E126, E226, E241, E242 and E704 which are turned OFF
36 # #   by default but represent guidelines accepted by us.
37 # # - Do not select E133 because it is incompatible with E123 which was
38 # #   selected instead.
39 # - It turns out that now all checks except E133 are enabled so the select
40 #   can be simplified to be just "E,W". However a new version could change
41 #   that (select E133 instead of E123) but that should be caught by the
42 #   verify job.
43 select = E,W
44 ignore = E722 # as of aprox 10/25 some update/change has caused existing code to fail on E722
45 exclude =
46     .git,
47     .tox,
48     docs/conf.py