aboutsummaryrefslogtreecommitdiffstats
path: root/docs/check_sphinx.py
diff options
context:
space:
mode:
authorMarko Tibold2011-12-15 12:25:56 +0100
committerMarko Tibold2011-12-15 12:25:56 +0100
commit59904576a2dcdaae8a5537af0109ca23ae99b6bb (patch)
treedc8e2970a02c85c51e63f9842d7f3370f3351792 /docs/check_sphinx.py
parent670dbe6d75c96efe77b94146ec48fc9543109f1e (diff)
downloaddjango-rest-framework-59904576a2dcdaae8a5537af0109ca23ae99b6bb.tar.bz2
reduced output to errors and warnings only
Diffstat (limited to 'docs/check_sphinx.py')
-rw-r--r--docs/check_sphinx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/check_sphinx.py b/docs/check_sphinx.py
index 4a96a8b0..74874eed 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)])