oslosphinx/tox.ini
Davanum Srinivas a3f3bf8b1d cleanup tox.ini
* Remove usedevelop : only needed when skipsdist 
  is set to True
* Remove install_command : We can just use the 
  default, we don't need to override
* Remove setenv : We can just use the default as
  we don't need any extra environment variables
* sitepackages : default is already false


Change-Id: Id13307a8f7c21496e1d5aad20cd9e2146b8f2fbd
2015-11-16 00:25:18 +00:00

22 lines
359 B
INI

[tox]
minversion = 1.6
envlist = pep8
[testenv]
deps = -r{toxinidir}/test-requirements.txt
downloadcache = {toxworkdir}/_download
[testenv:pep8]
commands =
flake8 oslosphinx
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools
show-source = True