-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtox.ini
More file actions
46 lines (41 loc) · 752 Bytes
/
Copy pathtox.ini
File metadata and controls
46 lines (41 loc) · 752 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
[tox]
envlist = py27,py35,py36,py37
whitelist_externals = {toxinidir}/utests.py
[testenv]
deps=
pytest
unittest2
flake8
pylint
pymongo
python-dateutil
commands=
python -m pytest {toxinidir}/tests
[testenv:py36]
deps=
flake8
pylint
pymongo
python-dateutil
pytest
pytest-cov
pytest-asyncio
commands=
python -m pytest --cov=trafaret {toxinidir}/tests {toxinidir}/tests3k
flake8 trafaret
[testenv:py37]
deps=
pyannotate
flake8
pylint
pymongo
python-dateutil
pytest
pytest-cov
pytest-asyncio
commands=
python -m pytest --cov=trafaret {toxinidir}/tests {toxinidir}/tests3k
flake8 trafaret
[flake8]
exclude = .tox,*.egg,build
max-line-length = 120