forked from Cornices/cornice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
44 lines (40 loc) · 617 Bytes
/
tox.ini
File metadata and controls
44 lines (40 loc) · 617 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
[tox]
envlist = py26,py27,py34,flake8
[testenv]
commands =
python --version
nosetests --with-coverage --cover-package=cornice {posargs}
deps =
nose
coverage
webtest
unittest2
mock
colander
Sphinx
rxjson
install_command = pip install --process-dependency-links --pre {opts} {packages}
[testenv:py26]
deps =
coverage
nose
webtest
mock
colander
Sphinx
rxjson
unittest2
importlib
[testenv:py34]
deps =
coverage
nose
webtest
mock
colander
Sphinx
rxjson
[testenv:flake8]
commands = flake8 cornice
deps =
flake8