forked from mchardysam/python-idex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
47 lines (41 loc) · 698 Bytes
/
tox.ini
File metadata and controls
47 lines (41 loc) · 698 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
47
[tox]
envlist = py27, py35, py36
[testenv]
usedevelop = true
basepython =
python2.7
deps =
-rtest-requirements.txt
commands = py.test -v tests/ --doctest-modules --cov idex --cov-report term-missing
passenv =
TRAVIS
TRAVIS_BRANCH
TRAVIS_JOB_ID
[testenv:py36]
basepython =
python3.6
deps =
-rtest-requirements.txt
-rtest-requirements35.txt
commands =
py.test -v asynctests/ --doctest-modules --cov idex --cov-report term-missing
[testenv:flake8]
usedevelop = false
commands = flake8 idex/
deps = flake8
[travis]
python =
3.6: py36, flake8
[flake8]
exclude =
.git,
.tox,
build,
dist
ignore =
E501
E999
[pep8]
ignore =
E501
E999