diff options
author | Georg Brandl <georg@python.org> | 2008-08-04 22:20:44 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-08-04 22:20:44 +0000 |
commit | 432115123ed505b4670b0779812c3dd3161b23f8 (patch) | |
tree | 5566bea9e849e88da9e404468e6e6d189688e04b /tests/test_markup.py | |
parent | 0a15003d0c0a628c69e5cd9aeb3a4944f97bd14e (diff) | |
download | sphinx-git-432115123ed505b4670b0779812c3dd3161b23f8.tar.gz |
Merged revisions 65529 via svnmerge from
svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x
........
r65529 | georg.brandl | 2008-08-04 22:19:30 +0000 (Mon, 04 Aug 2008) | 6 lines
Revert r65499 which was not well thought out. Instead, put
the whole build dir in exclude_trees by default in quickstart.
Also, revisit application cleanup and make it consistently use
less setup time while still trying to leave to traces.
........
Diffstat (limited to 'tests/test_markup.py')
-rw-r--r-- | tests/test_markup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_markup.py b/tests/test_markup.py index 23330a60c..3a3cb9d77 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -22,7 +22,7 @@ from sphinx.latexwriter import LaTeXWriter, LaTeXTranslator def setup_module(): global app, settings, parser - app = TestApp() + app = TestApp(cleanenv=True) optparser = frontend.OptionParser(components=(rst.Parser, HTMLWriter, LaTeXWriter)) settings = optparser.get_default_values() settings.env = app.builder.env |