-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtox.ini
53 lines (46 loc) · 1010 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
53
[tox]
envlist =
cover,py36,py37,py38,py39,py310,py311,py312,docs
[testenv:common]
deps =
supervisor >= 4.2.4
pyzmq >= 25.1.1
psutil >= 5.7.3
matplotlib >= 3.3.3
lxml >= 4.6.2
pyparsing >= 2.0.2, < 3
pytest
pytest-asyncio < 0.22
pytest-mock
commands =
pytest
[testenv:py36]
basepython = python3.6
deps =
{[testenv:common]deps}
flask-restx == 0.5.1
Flask < 3
Werkzeug == 2.0.3
commands = {[testenv:common]commands}
[testenv]
deps =
{[testenv:common]deps}
flask-restx >= 1.1.0, < 1.3
websockets >= 10.4, < 14
commands = {[testenv:common]commands}
[testenv:cover]
deps =
{[testenv]deps}
pytest-cov
commands =
pytest --cov=supvisors --cov-report=xml --cov-report=term-missing
[testenv:docs]
deps =
pyzmq >= 25.1.1
websockets >= 10.4, > 14
sphinx == 7.2.6
renku-sphinx-theme == 0.4.0
myst-parser == 2.0.0
allowlist_externals = make
commands =
make -C docs html BUILDDIR={envtmpdir} "SPHINXOPTS=-W -E"