forked from sphinx-doc/sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tox environments for python2.4-3.1
- Loading branch information
Daniel Neuhäuser
committed
Jan 8, 2011
1 parent
bc6b586
commit 1afb015
Showing
1 changed file
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,31 @@ | ||
[tox] | ||
envlist=du07,du06,du05 | ||
envlist=py24,py25,py26,py27,py31,du07,du06,du05 | ||
|
||
[testenv] | ||
deps=nose | ||
commands= | ||
nosetests | ||
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html | ||
|
||
[testenv:py24] | ||
deps= | ||
nose | ||
simplejson | ||
|
||
[testenv:py31] | ||
deps=https://bitbucket.org/jpellerin/nose3/get/tip.zip | ||
|
||
[testenv:du05] | ||
deps=docutils==0.5 | ||
deps= | ||
nose | ||
docutils==0.5 | ||
|
||
[testenv:du06] | ||
deps=docutils==0.6 | ||
deps= | ||
nose | ||
docutils==0.6 | ||
|
||
[testenv:du07] | ||
deps=docutils==0.7 | ||
deps= | ||
nose | ||
docutils==0.7 |