File: tox.ini

package info (click to toggle)
sphinx-issuetracker 0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 316 kB
  • sloc: python: 777; makefile: 131
file content (16 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tox]
envlist=py27,doc

[testenv]
deps=
    -r{toxinidir}/tests/requirements.txt
commands=
    py.test {posargs:--junitxml={envname}-tests.xml}

[testenv:doc]
basepython=python2
deps=
    -r{toxinidir}/doc
commands=
    sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees doc {envtmpdir}/linkcheck
    sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html