forked from cleanlab/cleanlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
37 lines (32 loc) · 857 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
[tox]
envlist = py{27,34,35,36,37}
[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
[testenv:py37]
whitelist_externals = pytest
deps =
-r{toxinidir}/requirements.txt
commands =
- pytest --verbose --cov=cleanlab/ --cov-config .coveragerc_py3