From 772e923c6f1a989d2c0caae9f391d190fe133f32 Mon Sep 17 00:00:00 2001 From: kotfu Date: Mon, 30 Jul 2018 22:29:40 -0600 Subject: Much better fix for #479 using tox --- tests/test_docs.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/test_docs.py (limited to 'tests/test_docs.py') 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) -- cgit v1.2.1