Skip to content

Commit

Permalink
Add support for tox testing
Browse files Browse the repository at this point in the history
This change is aimed at testing against multiple versions of Sphinx,
specifically v1.3 and v1.4 to ensure backwards compatibility.

Related to #3.
  • Loading branch information
t4ngo committed May 29, 2016
1 parent 9df995d commit db4b4fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[tox]
envlist = py27

[testenv]
deps = -rrequirements.txt
commands = nosetests

[testenv:sphinx1.3]
deps =
Sphinx>=1.3,<1.4
graphviz>=0.4.6
nose>=1.3.7
mock>=2.0.0

[testenv:sphinx1.4]
deps =
Sphinx>=1.4,<1.5
graphviz>=0.4.6
nose>=1.3.7
mock>=2.0.0

0 comments on commit db4b4fe

Please sign in to comment.