summaryrefslogtreecommitdiff
path: root/doc/check_sphinx.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/check_sphinx.py')
-rw-r--r--doc/check_sphinx.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/check_sphinx.py b/doc/check_sphinx.py
deleted file mode 100644
index 26f6b11..0000000
--- a/doc/check_sphinx.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import py
-import subprocess
-def test_build_docs(tmpdir):
- doctrees = tmpdir.join("doctrees")
- htmldir = tmpdir.join("html")
- subprocess.check_call([
- "sphinx-build", "-bhtml",
- "-d", str(doctrees), ".", str(htmldir)])
-
-def test_linkcheck(tmpdir):
- doctrees = tmpdir.join("doctrees")
- htmldir = tmpdir.join("html")
- subprocess.check_call(
- ["sphinx-build", "-blinkcheck",
- "-d", str(doctrees), ".", str(htmldir)])
-
-