diff --git a/docs/check_sphinx.py b/docs/check_sphinx.py index 4a96a8b0f..74874eede 100644 --- a/docs/check_sphinx.py +++ b/docs/check_sphinx.py @@ -5,12 +5,12 @@ def test_linkcheck(tmpdir): doctrees = tmpdir.join("doctrees") htmldir = tmpdir.join("html") subprocess.check_call( - ["sphinx-build", "-W", "-blinkcheck", + ["sphinx-build", "-q", "-blinkcheck", "-d", str(doctrees), ".", str(htmldir)]) def test_build_docs(tmpdir): doctrees = tmpdir.join("doctrees") htmldir = "html" #we want to keep the docs subprocess.check_call([ - "sphinx-build", "-W", "-bhtml", + "sphinx-build", "-q", "-bhtml", "-d", str(doctrees), ".", str(htmldir)])