aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/check_sphinx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/check_sphinx.py b/docs/check_sphinx.py
index c4ce0317..4a96a8b0 100644
--- a/docs/check_sphinx.py
+++ b/docs/check_sphinx.py
@@ -10,7 +10,7 @@ def test_linkcheck(tmpdir):
def test_build_docs(tmpdir):
doctrees = tmpdir.join("doctrees")
- htmldir = tmpdir.join("html")
+ htmldir = "html" #we want to keep the docs
subprocess.check_call([
"sphinx-build", "-W", "-bhtml",
"-d", str(doctrees), ".", str(htmldir)])