-
Notifications
You must be signed in to change notification settings - Fork 15
/
tox.ini
43 lines (38 loc) · 795 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
[tox]
envlist = py27, py34, py35, py36, py37, py38
[testenv]
commands = {envpython} setup.py test
deps = -rtest_requirements.txt
[testenv:py26]
setenv =
CFLAGS =-Qunused-arguments
CPPFLAGS =-Qunused-arguments
[testenv:docs]
basepython = python2.7
usedevelop = True
commands =
rm -f docs/orderedset*.rst
sphinx-apidoc -T -o docs/ lib
make -C docs clean
make -C docs html
whitelist_externals =
make
rm
deps =
-rdocs/requirements.txt
[testenv:coverage]
usedevelop = True
basepython = python2.7
commands =
coverage run --source orderedset setup.py test
coverage report -m
coverage html
deps =
-rtest_requirements.txt
[testenv:ipython]
basepython = python2.7
usedevelop = True
commands = ipython
deps =
ipython
-rtest_requirements.txt