forked from cleanlab/cleanlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (26 loc) · 689 Bytes
/
tox.ini
File metadata and controls
30 lines (26 loc) · 689 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
[tox]
envlist = py{27,34,35,36}
[testenv:py27]
whitelist_externals = pytest
deps =
-r{toxinidir}/requirements.txt
commands =
- pytest --verbose --cov=cleanlab/ --cov-config .coveragerc_py27
[testenv:py34]
whitelist_externals = pytest
deps =
-r{toxinidir}/requirements.txt
commands =
- pytest --verbose --cov=cleanlab/ --cov-config .coveragerc_py34
[testenv:py35]
whitelist_externals = pytest
deps =
-r{toxinidir}/requirements.txt
commands =
- pytest --verbose --cov=cleanlab/ --cov-config .coveragerc_py3
[testenv:py36]
whitelist_externals = pytest
deps =
-r{toxinidir}/requirements.txt
commands =
- pytest --verbose --cov=cleanlab/ --cov-config .coveragerc_py3