forked from python-rapidjson/python-rapidjson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
33 lines (28 loc) · 720 Bytes
/
tox.ini
File metadata and controls
33 lines (28 loc) · 720 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
[tox]
skipsdist = True
envlist = py34, py35, py36
[base]
commands =
pip install -e . -r requirements-test.txt
[testenv]
commands =
{[base]commands}
py.test {posargs}
[testenv:py36]
commands =
{[testenv]commands}
python setup.py check -r -s
# The following uses a debug-enabled compilation of the Python interpreter: on
# Debian it's packaged as python3.6-dbg; the test_refs_count module depends on
# functionality available only in that variant
[testenv:py36-debug]
basepython = python3.6dm
commands =
{[testenv]commands}
[testenv:docs]
basepython = python3
changedir = docs
deps = sphinx
usedevelop = True
commands=
sphinx-build -b doctest -d {envtmpdir}/doctrees . {envtmpdir}/doctest