Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/_static/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
This README file is just to populate the _static directory it lives
in.

This is necessary because:

- Sphinx wants to see the _static directory.
- Git doesn't want to put empty directories under source control.

Otherwise, this file serves no purpose.
9 changes: 8 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pypy,py26,py27,py32,py33
envlist = pypy,py26,py27,py32,py33,docs

[testenv]
setenv =
Expand All @@ -8,3 +8,10 @@ setenv =
PYTHONPATH=
# The standard library unittest module can run tests on Python 2.7 and newer
commands = python setup.py test

[testenv:docs]
deps =
sphinx==1.2.2
basepython = python2.7
commands =
sphinx-build -W -b html doc doc/_build/html