-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtox.ini
More file actions
44 lines (39 loc) · 838 Bytes
/
tox.ini
File metadata and controls
44 lines (39 loc) · 838 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
34
35
36
37
38
39
40
41
42
43
44
[tox]
envlist = py27,py34,pypy,pypy3,flake8,isort,manifest,docs
minversion = 1.9.0
skip-missing-interpreters = True
[testenv]
commands =
pip install durga[tests]
make coverage
whitelist_externals = make
[testenv:flake8]
basepython = python3.4
commands =
flake8 setup.py durga/ tests/
deps =
flake8==2.4.0
skip_install = True
[testenv:isort]
basepython = python3.4
commands =
isort --check-only --recursive --verbose setup.py durga tests
deps =
isort==3.9.6
skip_install = True
[testenv:manifest]
basepython = python3.4
commands =
check-manifest
deps =
check-manifest==0.24
skip_install = True
[testenv:docs]
basepython = python3.4
commands =
pip install durga[docs]
make docs BUILDDIR={envtmpdir} SPHINXOPTS='-W'
make -C docs linkcheck BUILDDIR={envtmpdir}
doc8
deps =
doc8==0.6.0