We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a789f2a commit a452a99Copy full SHA for a452a99
pelican/plugins/md_include/test_md_include.py
@@ -42,6 +42,7 @@ def setUp(
42
inherit_heading_depth=None,
43
heading_offset=None,
44
):
45
+ """Initialize the configuration."""
46
self.output_path = mkdtemp(prefix=TEST_DIR_PREFIX)
47
self.content_path = mkdtemp(prefix=TEST_DIR_PREFIX)
48
@@ -97,6 +98,7 @@ def setUp(
97
98
pelican.run()
99
100
def tearDown(self):
101
+ """Tidy up the temporary directories."""
102
rmtree(self.output_path)
103
rmtree(self.content_path)
104
0 commit comments