forked from pipermerriam/flex
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (32 loc) · 643 Bytes
/
tox.ini
File metadata and controls
39 lines (32 loc) · 643 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
[tox]
envlist=
py27,
py27-with-tornado,
py34,
py34-with-tornado,
flake8
[flake8]
max-line-length= 100
exclude= tests/*,flex/compat/validate_email.py
[testenv]
commands=py.test --tb native {posargs:tests}
deps =
-r{toxinidir}/requirements-dev.txt
[testenv:py27]
basepython=python2.7
[testenv:py27-with-tornado]
basepython=python2.7
deps =
-r{toxinidir}/requirements-dev.txt
tornado
[testenv:py34]
basepython=python3.4
[testenv:py34-with-tornado]
basepython=python3.4
deps =
-r{toxinidir}/requirements-dev.txt
tornado
[testenv:flake8]
basepython=python
deps=flake8
commands=flake8 {toxinidir}/flex