From 80d8363972ccfd83a51d7ca81e9d6f2be5345345 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 8 Jun 2021 16:47:47 -0400 Subject: [PATCH] Disable parallel sphinx builds by default This commit disables the use of parallel sphinx by default in CI. This was originally turned on by default in #4477 to try and improve CI throughput. While this did increase the docs build time a bit the use of jupyter-sphinx has proven to not really parallel be safe. There is a high failure rate caused by jupyter-sphinx racing against itself causing an error around a zmq address conflict. While the speed boost is useful in trying to improve CI throughput that benefit is outweighed by the failure rate. Fixes #5904 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ffade992072b..5b89af33209f 100644 --- a/tox.ini +++ b/tox.ini @@ -51,7 +51,7 @@ setenv = deps = -r{toxinidir}/requirements-dev.txt commands = - sphinx-build -W -b html -j auto docs/ docs/_build/html {posargs} + sphinx-build -W -b html docs/ docs/_build/html {posargs} [pycodestyle] max-line-length = 105