Do proper cleanup of generated files.

This commit is contained in:
Georg Brandl
2009-03-16 23:30:17 +01:00
parent 32800b1762
commit ef98b65f29
3 changed files with 9 additions and 0 deletions

View File

@@ -16,6 +16,10 @@ from util import *
from sphinx.theming import Theme, ThemeError
def teardown_module():
(test_root / '_build').rmtree()
(test_root / 'generated').rmtree()
@with_app(confoverrides={'html_theme': 'ziptheme',
'html_theme_options.testopt': 'foo'})