diff options
Diffstat (limited to 'tests/test_docs.py')
-rw-r--r-- | tests/test_docs.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/test_docs.py b/tests/test_docs.py deleted file mode 100644 index 58c6d973..00000000 --- a/tests/test_docs.py +++ /dev/null @@ -1,28 +0,0 @@ -# coding=utf-8 -""" -Test the build of the sphinx documentation - -Released under MIT license, see LICENSE file -""" -import os - -import pytest - -from sphinx.application import Sphinx - -DOCS_SRCDIR = 'docs' -DOCS_BUILDDIR = os.path.join('docs', '_build') -DOCS_TREEDIR = os.path.join(DOCS_BUILDDIR, 'doctrees') - -def test_html_documentation(): - # if you want really strict checking, set warningiserror=True - docs = Sphinx(DOCS_SRCDIR, - DOCS_SRCDIR, - DOCS_BUILDDIR, - DOCS_TREEDIR, - buildername='html', - warningiserror=False, - ) - # this throws exceptions for errors, which pytest then - # treats as a failure - docs.build(force_all=True) |