forked from Kinto/kinto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (26 loc) · 811 Bytes
/
tox.ini
File metadata and controls
31 lines (26 loc) · 811 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
[tox]
envlist = py27,py34,py35,pypy,cliquet-master,flake8
skip_missing_interpreters = True
[testenv]
commands =
python --version
py.test --cov-report term-missing --cov-fail-under 100 --cov kinto {posargs}
deps = -rdev-requirements.txt
install_command = pip install --pre {opts} {packages}
[testenv:cliquet-master]
commands =
python --version
py.test --cov-report term-missing --cov-fail-under 100 --cov kinto {posargs}
deps = -rdev-requirements.txt
https://github.com/mozilla-services/cliquet/tarball/master
install_command = pip install --pre {opts} {packages}
[testenv:flake8]
commands = flake8 kinto
deps =
flake8
[testenv:docs]
commands = sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
deps =
Sphinx
sphinx_rtd_theme
sphinxcontrib-httpdomain