Fix typo in DdbCommons.robot
[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
11     coala-bears
12 commands =
13     python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger
14     coala --non-interactive
15
16 [testenv:docs]
17 deps = sphinx
18 commands = sphinx-build -b html -d {envtmpdir}/doctrees ./docs/ {envtmpdir}/html
19
20 [testenv:tidy]
21 deps = robotframework
22 commands = python ./tools/robot_check/tidytool.py diff csit tools
23
24 [testenv:pep8]
25 deps =
26     flake8
27 commands = flake8
28
29 [flake8]
30 show-source = True
31 max-line-length = 120
32
33 # # - Select E121, E123, E126, E226, E241, E242 and E704 which are turned OFF
34 # #   by default but represent guidelines accepted by us.
35 # # - Do not select E133 because it is incompatible with E123 which was
36 # #   selected instead.
37 # - It turns out that now all checks except E133 are enabled so the select
38 #   can be simplified to be just "E,W". However a new version could change
39 #   that (select E133 instead of E123) but that should be caught by the
40 #   verify job.
41 select = E,W
42 exclude =
43     .git,
44     .tox,
45     docs/conf.py