-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
52 lines (48 loc) · 927 Bytes
/
tox.ini
File metadata and controls
52 lines (48 loc) · 927 Bytes
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 = py34, py35, py36, py37, py38, pylint, coverage
skipsdist = True
[testenv:pylint]
deps = pylint
setenv =
PIPENV_NO_INHERIT = 1
PIPENV_HIDE_EMOJIS = 1
whitelist_externals = make
commands =
make test-install
make lint
[testenv:coverage]
deps = pipenv
setenv =
PIPENV_NO_INHERIT = 1
PIPENV_HIDE_EMOJIS = 1
whitelist_externals = make
commands =
make test-install
make coverage
[testenv]
deps = pipenv
setenv =
PIPENV_NO_INHERIT = 1
PIPENV_HIDE_EMOJIS = 1
whitelist_externals = make
commands =
make test-install
make install
python -m pytest
[gh-actions]
python =
3.7: py3.7
3.8: py3.8
3.9: py3.9
setenv =
FLIT_ROOT_INSTALL = 1
PIPENV_NO_INHERIT = 1
PIPENV_HIDE_EMOJIS = 1
PIPENV_IGNORE_VIRTUALENVS = 1
whitelist_externals = make
commands =
make test-install
make lint
make coverage
make install
python -m pytest