forked from ai4os-hub/litter-assessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
36 lines (31 loc) · 1.1 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
[tox]
minversion = 3.26.0
isolated_build = True
envlist = qc.sty,qc.cov,qc.sec,py310,py38
#skipsdist = True
[testenv]
usedevelop = True
# if recreating envdir fails in tox>=4, comment the following line
envdir = {toxworkdir}/shared
install_command = pip install -U {opts} {packages}
commands = pytest --numprocesses=auto --dist=loadscope {posargs}
allowlist_externals =
mkdir
setenv =
LC_ALL=C.UTF-8
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=240
deps = -r{toxinidir}/test-requirements.txt
[testenv:qc.sty]
commands =
- flake8 --statistics --tee --output-file={toxinidir}/flake8.log \
--format=pylint litter_assessment_service
# important for Jenkins publishing of results: store results in subdirectory
[testenv:qc.cov]
commands = pytest --cov=litter_assessment_service --cov-report=html:{toxinidir}/htmlcov --cov-report=term-missing tests
# important for Jenkins publishing of results: store results in subdirectory
[testenv:qc.sec]
commands =
mkdir -p {toxinidir}/bandit
bandit -r litter_assessment_service -x tests -s B404,B603,B310 -f html -o {toxinidir}/bandit/index.html