forked from ansible/tower-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
49 lines (36 loc) · 614 Bytes
/
Copy pathtox.ini
File metadata and controls
49 lines (36 loc) · 614 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
48
49
[tox]
envlist =
py3.4,
py3.3,
py2.7,
py2.6,
flake8
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/lib/
commands =
nosetests {posargs}
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/tests/requirements.txt
[testenv:py3.4]
basepython = python3.4
[testenv:py3.3]
basepython = python3.3
[testenv:py2.7]
basepython = python2.7
deps =
{[testenv]deps}
mock
[testenv:py2.6]
basepython = python2.6
deps =
{[testenv:py2.7]deps}
importlib
ordereddict
simplejson
unittest2
[testenv:flake8]
deps = flake8
commands =
flake8 lib tests