-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
57 lines (45 loc) · 1.32 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
[tox]
envlist = black, cover, flake8, pylint, safety
[testenv]
usedevelop = True
basepython = python3.8
setenv = VIRTUAL_ENV={envdir}
PYTHONDONTWRITEBYTECODE = 1
deps = -r{toxinidir}/requirements.txt
parallel_show_output = true
#######################################################################################
[testenv:black]
deps = black
skip_install = true
commands =
black --check --diff src/
#######################################################################################
[testenv:cover]
deps = {[testenv]deps}
coverage[toml]
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-test.txt
commands =
nose2 -C --coverage src/tests
whitelist_externals = sh
#######################################################################################
[testenv:flake8]
deps = flake8
commands =
flake8 src/
#######################################################################################
[testenv:pylint]
deps = {[testenv]deps}
-r{toxinidir}/requirements-test.txt
pylint
commands =
- pylint -E src
#######################################################################################
[testenv:safety]
setenv =
LC_ALL=C.UTF-8
LANG=C.UTF-8
deps = {[testenv]deps}
safety
commands =
- safety check --full-report