forked from TheKevJames/coveralls-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (31 loc) · 627 Bytes
/
tox.ini
File metadata and controls
35 lines (31 loc) · 627 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
[tox]
envlist = py35-cov41-{default,pyyaml},py{36,37,38,39,py3}-cov{41,5}-{default,pyyaml}
[gh-actions]
python =
3.5: py35
3.6: py36-cov5
3.7: py37-cov5
3.8: py38-cov5
[testenv]
passenv = *
usedevelop = true
deps =
mock
responses
pytest
pyyaml: PyYAML>=3.10,<5.3
cov41: coverage>=4.1,<5.0
cov5: coverage>=5.0,<6.0
commands =
coverage run --branch --source=coveralls -m pytest tests/
coverage report -m
[testenv:coveralls41]
deps =
coverage>=4.1,<5.0
commands =
coveralls --verbose
[testenv:coveralls5]
deps =
coverage>=5.0,<6.0
commands =
coveralls --verbose