forked from lenstronomy/lenstronomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
40 lines (36 loc) · 860 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
[tox]
envlist = py36
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/lenstronomy
deps =
-r{toxinidir}/requirements.txt
pytest
pytest-cov
commands =
py.test --basetemp={envtmpdir} --junitxml=junit-{envname}.xml --cov-report xml --cov lenstronomy
[testenv:style]
deps =
-r{toxinidir}/requirements.txt
flake8
commands =
python setup.py flake8
[testenv:docs]
changedir=docs/
deps =
-r{toxinidir}/requirements.txt
sphinx
commands =
sphinx-build -b linkcheck ./ _build/
sphinx-build -b html ./ _build/
[testenv:docs-ci]
whitelist_externals = mv
changedir=docs/
deps =
-r{toxinidir}/requirements.txt
sphinx
pytest
pytest-cov
commands=
py.test --tb=line -v --junitxml=junit-{envname}.xml --cov-report term-missing --cov-report xml --cov ./ check_sphinx.py
mv coverage.xml ../.