Fixed the VPN service test case issues.
[integration/test.git] / tox.ini
1 [tox]
2 minversion = 1.6.0
3 envlist = pep8,tidy
4 # TODO: Include docs when it starts performing strict checks.
5 skipsdist = true
6
7 [testenv:docs]
8 deps = sphinx
9 commands = sphinx-build -b html -d {envtmpdir}/doctrees ./docs/ {envtmpdir}/html
10
11 [testenv:tidy]
12 deps = robotframework
13 commands = python ./tools/robot_check/tidytool.py diff csit tools
14
15 [testenv:pep8]
16 deps =
17     flake8
18     pep8
19 commands = flake8
20
21 [flake8]
22 show-source = True
23 max-line-length = 120
24
25 # # - Select E121, E123, E126, E226, E241, E242 and E704 which are turned OFF
26 # #   by default but represent guidelines accepted by us.
27 # # - Do not select E133 because it is incompatible with E123 which was
28 # #   selected instead.
29 # - It turns out that now all checks except E133 are enabled so the select
30 #   can be simplified to be just "E,W". However a new version could change
31 #   that (select E133 instead of E123) but that should be caught by the
32 #   verify job.
33 select = E,W
34 exclude =
35     .git,
36     .tox,
37     docs/conf.py