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
36 lines (32 loc) · 632 Bytes
/
tox.ini
File metadata and controls
36 lines (32 loc) · 632 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
[tox]
envlist = py{27,34,35,py,py3}-cov{3,4,41}-{default,pyyaml},py36-cov41-{default,pyyaml}
[testenv]
passenv = *
usedevelop = true
deps =
mock
pytest
pytest-runner
sh
pyyaml: PyYAML>=3.10
cov3: coverage<4.0
cov4: coverage>=4.0,<4.1
cov41: coverage>=4.1
commands =
coverage run --branch --source=coveralls setup.py test
coverage report -m
[testenv:coveralls3]
deps =
coverage<4.0
commands =
coveralls --verbose
[testenv:coveralls4]
deps =
coverage>=4.0,<4.1
commands =
coveralls --verbose
[testenv:coveralls41]
deps =
coverage>=4.1
commands =
coveralls --verbose