-
Notifications
You must be signed in to change notification settings - Fork 7
/
tox.ini
56 lines (50 loc) · 1.14 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tox]
envlist = behave, yapf, flake8, pylint, bandit
[testenv:behave]
passenv = *
basepython=python3
commands = behave {posargs} --show-timings --stop tests/features --junit --junit-directory junit_report
deps = behave==1.2.6
retrying==1.3.3
docker==6.1.3
requests<2.32
PyYAML==5.3.1
psycopg2-binary==2.9.7
kazoo==2.9.0
coverage==4.5.4
lockfile
daemon
urllib3<2
[testenv:behave_unstoppable]
passenv = *
basepython=python3
commands = behave {posargs} --show-timings tests/features --junit --junit-directory junit_report
deps = behave==1.2.6
retrying==1.3.3
docker==6.1.3
requests<2.32
PyYAML==5.3.1
psycopg2-binary==2.9.7
kazoo==2.9.0
coverage==4.5.4
urllib3<2
[testenv:yapf]
basepython=python3
commands = yapf -rpd src
deps = yapf
[testenv:flake8]
basepython=python3
commands = flake8 src
deps = flake8
flake8-string-format
flake8-isort
flake8-commas
flake8-quotes
[testenv:pylint]
basepython=python3
commands = pylint src
deps = pylint
[testenv:bandit]
basepython=python3
commands = bandit -r src
deps = bandit