Skip to content

Commit

Permalink
Corrected scripts for running documentation tests.
Browse files Browse the repository at this point in the history
--HG--
extra : convert_revision : svn%3A993dc4b6-72fc-0310-9b3e-91fa30ebc9a8/pywt/trunk%40167
  • Loading branch information
nigma committed Mar 17, 2010
1 parent ab824bf commit b630fd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import doctest
import glob

files = glob.glob("../doc/*.rst") + glob.glob("../doc/ref/*.rst")
files = glob.glob("../doc/source/*.rst") + glob.glob("../doc/source/ref/*.rst")
for path in files:
print "testing %s" % path
doctest.testfile(path)
2 changes: 1 addition & 1 deletion tests/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import doctest
import glob

files = glob.glob("../doc/regression/*.rst")
files = glob.glob("../doc/source/regression/*.rst")

for path in files:
print "testing %s" % path
Expand Down

0 comments on commit b630fd6

Please sign in to comment.