Skip to content

Instantly share code, notes, and snippets.

@RonnyPfannschmidt
Created August 2, 2015 09:23
Show Gist options
  • Save RonnyPfannschmidt/1b0d4e05889462d1ba9c to your computer and use it in GitHub Desktop.
Save RonnyPfannschmidt/1b0d4e05889462d1ba9c to your computer and use it in GitHub Desktop.
tox shortcoming example
# this does not work since docs is not a factor
$ tox -e docs-html # will build html docs
$ tox -e docs-pdf # will build pdf docs
[tox]
envlist = py27,py3{4,5}
[testenv]
...
[testenv:docs]
deps = sphinx
commands =
html: sphinx-build -b html ...
pdf: sphinx-builds ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment