-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
52 lines (47 loc) · 770 Bytes
/
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
[tox]
envlist =
py38
py39
py310
py311
checkqa
[testenv]
setenv =
PYTHONWARNINGS = all
deps =
coverage
selenium
requests
responses
mock
pillow
psutil
commands =
coverage run setup.py test
coverage report
coverage html
[coverage:run]
include = iarp_utils*
[testenv:docs]
skip_install = True
changedir = docs
deps =
Sphinx
whitelist_externals = make
commands =
# make -C {toxinidir}/docs html
sphinx-build -b html -d _build/doctrees . _build/html
[testenv:checkqa]
basepython = python3.8
skip_install = True
deps =
flake8
isort
commands =
flake8 {posargs:{toxinidir}/iarp_utils}
isort --check-only --diff {posargs:{toxinidir}/iarp_utils}
[flake8]
max-line-length = 120
per-file-ignores =
__init__.py:F401
browsers.py:F401