-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
68 lines (52 loc) · 1.42 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
57
58
59
60
61
62
63
64
65
66
67
68
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist=
flake8,
code,
docs,
docs-linkcheck,
minversion = 2.0
skipsdist = True
[testenv]
basepython =
code: python3
flake8: python3
setenv =
VIRTUAL_ENV={envdir}
# NOTE: relative paths were used due to '-w' flag for nosetests util
usedevelop = True
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-test.txt
whitelist_externals = bash, flake8, pytest
[testenv:clm]
# use pip to report dependencies with versions
whitelist_externals = sh
commands = sh -c 'pip freeze > requirements.txt'
[testenv:flake8]
commands =
flake8 o2ims
flake8 o2dms
flake8 o2common
[testenv:code]
setenv =
O2APP_CONFIG=configs/o2app.conf
ALARM_YAML=configs/alarm.yaml
commands =
pytest tests/unit
[testenv:nosetests]
commands =
pytest tests/unit
[testenv:docs]
basepython = python3
deps = -r{toxinidir}/docs/requirements-docs.txt
commands =
sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
echo "Generated docs available in {toxinidir}/docs/_build/html"
allowlist_externals = echo
[testenv:docs-linkcheck]
basepython = python3
deps = -r{toxinidir}/docs/requirements-docs.txt
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
[flake8]
extend-ignore = E231,F401