forked from Kinto/kinto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
57 lines (50 loc) · 971 Bytes
/
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
[tox]
envlist = py27,py27-raw,py34,py35,pypy,flake8
skip_missing_interpreters = True
[testenv]
passenv = TRAVIS
commands =
python --version
py.test --cov-report term-missing --cov-fail-under 100 --cov kinto {posargs}
deps =
-rdev-requirements.txt
psycopg2
newrelic
raven
statsd
install_command = pip install --pre {opts} {packages}
[testenv:flake8]
commands = flake8 kinto tests
deps =
flake8
[testenv:py27-raw]
passenv = TRAVIS
commands =
python --version
py.test {posargs}
deps =
mock
pytest
pytest-cache
pytest-capturelog
pytest-cover
pytest-sugar
webtest
werkzeug
[testenv:pypy]
passenv = TRAVIS
deps =
-rdev-requirements.txt
psycopg2cffi
newrelic
raven
statsd
[testenv:docs]
commands = sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
deps =
Sphinx
sphinx_rtd_theme
sphinxcontrib-httpdomain
kinto-redis
[flake8]
max-line-length = 99