From 43484838f831da03814adc8ca9a305bf7a793c1c Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 11 Feb 2017 00:50:13 +0100 Subject: [PATCH] Don't treat warnings as error in Travis docs job bpo-29527. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index af0f28dd3507ae..515cc8f5259527 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ matrix: - cd Doc - make venv PYTHON=python3 script: - - make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-nW -q -b linkcheck" + - make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-n -q -b linkcheck" - os: linux language: c compiler: clang