aboutsummaryrefslogtreecommitdiffstats
path: root/docs/check_sphinx.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/check_sphinx.py')
-rw-r--r--docs/check_sphinx.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/check_sphinx.py b/docs/check_sphinx.py
deleted file mode 100644
index feb04abd..00000000
--- a/docs/check_sphinx.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import pytest
-import subprocess
-
-def test_build_docs(tmpdir):
- doctrees = tmpdir.join("doctrees")
- htmldir = "html" #we want to keep the docs
- subprocess.check_call([
- "sphinx-build", "-q", "-bhtml",
- "-d", str(doctrees), ".", str(htmldir)])