-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (30 loc) · 693 Bytes
/
tox.ini
File metadata and controls
31 lines (30 loc) · 693 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
[tox]
envlist=py27,py34
[testenv]
deps=pytest-mock
pytest-cov
pytest
commands=py.test --cov=devs tests
[testenv:devenv27]
envdir = .devenv27
basepython = python2.7
usedevelop = True
commands =
deps = -r{toxinidir}/requirements-dev.txt
-r{toxinidir}/requirements.txt
[testenv:devenv34]
envdir = .devenv34
basepython = python3.4
usedevelop = True
commands =
deps = -r{toxinidir}/requirements-dev.txt
-r{toxinidir}/requirements.txt
[testenv:docs]
basepython = python3
commands=python setup.py docs {posargs}
deps = -r{toxinidir}/requirements-doc.txt
[testenv:autodocs]
basepython = python3
commands=./autodocs.sh
deps = -r{toxinidir}/requirements-doc.txt
usedevelop=True