forked from mozilla-services/cliquet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
77 lines (70 loc) · 1.18 KB
/
tox.ini
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tox]
envlist = py27,py34,pypy,py27-raw,flake8
skip_missing_interpreters = True
[testenv]
passenv = TRAVIS
commands =
python --version
nosetests -s --with-coverage --cover-min-percentage=100 --cover-package=cliquet {posargs}
deps =
coverage
mock
nose
psycopg2
SQLAlchemy
zope.sqlalchemy
raven
statsd
unittest2
webtest
newrelic
werkzeug
install_command = pip install --process-dependency-links --pre {opts} {packages}
[testenv:py34]
passenv = TRAVIS
deps =
coverage
mock
nose
psycopg2
SQLAlchemy
zope.sqlalchemy
raven
statsd
webtest
newrelic
werkzeug
[testenv:py27-raw]
passenv = TRAVIS
commands =
python --version
nosetests {posargs}
deps =
coverage
mock
nose
webtest
werkzeug
[testenv:pypy]
passenv = TRAVIS
deps =
coverage
mock
nose
psycopg2cffi
SQLAlchemy
zope.sqlalchemy
raven
statsd
webtest
newrelic
werkzeug
[testenv:flake8]
commands = flake8 cliquet
deps =
flake8
[testenv:docs]
commands = sphinx-build -b html -d cliquet_docs/_build/doctrees cliquet_docs cliquet_docs/_build/html
deps =
Sphinx
sphinx_rtd_theme