Don't output html to a tempdir, but keep them.

This commit is contained in:
Marko Tibold 2011-12-15 01:16:09 +01:00
parent 0f16db7614
commit 670dbe6d75

View File

@ -10,7 +10,7 @@ def test_linkcheck(tmpdir):
def test_build_docs(tmpdir): def test_build_docs(tmpdir):
doctrees = tmpdir.join("doctrees") doctrees = tmpdir.join("doctrees")
htmldir = tmpdir.join("html") htmldir = "html" #we want to keep the docs
subprocess.check_call([ subprocess.check_call([
"sphinx-build", "-W", "-bhtml", "sphinx-build", "-W", "-bhtml",
"-d", str(doctrees), ".", str(htmldir)]) "-d", str(doctrees), ".", str(htmldir)])