From 97273e25bfd534e52129737f3aa4ea260e6f8c5c Mon Sep 17 00:00:00 2001 From: Marcus Oskarsson Date: Thu, 11 Jul 2024 15:08:26 +0200 Subject: [PATCH] Not starting redis-server when building doc --- .readthedocs.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d7d5d79b9..8f5cc0ec6 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -6,10 +6,6 @@ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details -# This uses custom commands, because it needs to get a Redis server running -# which is necessary to get the Flask routes with the `autoflask` directives. - - version: 2 build: @@ -26,7 +22,7 @@ build: - "mamba env create --file conda-environment.yml --force" - "mamba run --name mxcubeweb poetry install --only=docs,main" # yamllint disable-line rule:line-length - - "(mamba run --name mxcubeweb redis-server &) && mamba run --name mxcubeweb python -m sphinx -T -E -b html -d _build/doctrees -c docs docs/source ${READTHEDOCS_OUTPUT}/html && mamba run --name mxcubeweb redis-cli shutdown" + - "mamba run --name mxcubeweb python -m sphinx -T -E -b html -d _build/doctrees -c docs docs/source ${READTHEDOCS_OUTPUT}/html" ... # EOF