-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
37 lines (32 loc) · 1.08 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
[tox]
minversion = 2.5.0
isolated_build = True
envlist = qc.sty,qc.cov,qc.sec,py38,py37,py36
#skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
commands = pytest --numprocesses=auto --dist=loadscope {posargs}
whitelist_externals =
mkdir
allowlist_externals =
mkdir
setenv =
LC_ALL=C.UTF-8
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=240
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:qc.sty]
commands =
- flake8 --statistics --tee --output-file={toxinidir}/flake8.log \
--format=pylint obj_detect_pytorch
# important for Jenkins publishing of results: store results in subdirectory
[testenv:qc.cov]
commands = pytest --cov=obj_detect_pytorch --cov-report=html:{toxinidir}/htmlcov --cov-report=term-missing obj_detect_pytorch/tests
# important for Jenkins publishing of results: store results in subdirectory
[testenv:qc.sec]
commands =
mkdir -p {toxinidir}/bandit
bandit -r obj_detect_pytorch -x tests -s B404,B603,B310 -f html -o {toxinidir}/bandit/index.html