From 670dbe6d75c96efe77b94146ec48fc9543109f1e Mon Sep 17 00:00:00 2001 From: Marko Tibold Date: Thu, 15 Dec 2011 01:16:09 +0100 Subject: [PATCH] Don't output html to a tempdir, but keep them. --- docs/check_sphinx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/check_sphinx.py b/docs/check_sphinx.py index c4ce03177..4a96a8b0f 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)])