forked from CompMaterSci/python-geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (29 loc) · 664 Bytes
/
tox.ini
File metadata and controls
34 lines (29 loc) · 664 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
[tox]
envlist = py{27,34,35},flake8
[testenv]
deps = pytest
commands = py.test
[testenv:flake8]
deps = flake8
commands = flake8 python_geometry
[testenv:docs]
changedir = docs
deps =
sphinx
sphinx_rtd_theme
numpydoc
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:docs_linkcheck]
changedir = docs
deps =
sphinx
sphinx_rtd_theme
numpydoc
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees . {envtmpdir}/linkcheck
[testenv:doctest]
changedir = docs
deps =
sphinx
sphinx_rtd_theme
numpydoc
commands = sphinx-build -W -b doctest -d {envtmpdir}/doctrees . {envtmpdir}/doctest