-
Notifications
You must be signed in to change notification settings - Fork 28
/
tox.ini
59 lines (49 loc) · 965 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
54
55
56
57
58
59
[tox]
envlist = py35,py36,py37,py38,py39,py310,pypy3,flake8,docs
[testenv:flake8]
basepython = python3.8
commands =
pip install poetry==1.1.14
poetry install
flake8 dotty_dict
exclude =
.git
.idea
.tox
.venv
.eggs
__pycache__
dotty_dict.egg-info
[testenv:docs]
basepython = python3.8
commands =
pip install poetry==1.1.14
poetry install
poetry run make docs
[testenv:py35]
basepython = python3.5
[testenv:py36]
basepython = python3.6
[testenv:py37]
basepython = python3.7
[testenv:py38]
basepython = python3.8
[testenv:py39]
basepython = python3.9
[testenv:py310]
basepython = python3.10
[testenv:pypy3]
basepython = pypy3
commands =
pip install poetry==1.1.14
poetry install
poetry run make test
[testenv]
changedir = {toxinidir}
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/vo
passenv = PYTHONPATH
commands =
pip install poetry==1.1.14
poetry install
poetry run make test