diff options
| author | Marko Tibold | 2011-12-15 01:16:09 +0100 | 
|---|---|---|
| committer | Marko Tibold | 2011-12-15 01:16:09 +0100 | 
| commit | 670dbe6d75c96efe77b94146ec48fc9543109f1e (patch) | |
| tree | 6c4ec9ec3de0ade1470198f329997977d18a55a5 /docs | |
| parent | 0f16db76146bed8c0c425fac862c43ccbe1fa7a7 (diff) | |
| download | django-rest-framework-670dbe6d75c96efe77b94146ec48fc9543109f1e.tar.bz2 | |
Don't output html to a tempdir, but keep them.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/check_sphinx.py | 2 | 
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)])  | 
