summaryrefslogtreecommitdiff
path: root/doc/check_sphinx.py
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2016-09-17 20:30:13 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2016-09-17 20:30:13 +0200
commit07fdce28e407b0ec10b5fee682f134550eae335b (patch)
tree74baed3d9a1daa2ecd8d4bb3f00ff1e47c9f88d4 /doc/check_sphinx.py
parent2237fc53240f8892577b3a54016dfcfe8be7fd56 (diff)
downloadtox-master.tar.gz
clean out source files and link to new repoHEADmaster
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)])
-
-