From 47ab18fdd2b9402cbfec48574cd8c559e47baf9a Mon Sep 17 00:00:00 2001
From: Thomas Kluyver <thomas@kluyver.me.uk>
Date: Tue, 5 Oct 2021 11:59:07 +0100
Subject: [PATCH] Block Sphinx & Latex from waiting for interactive input

---
 src/xfel_calibrate/finalize.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/xfel_calibrate/finalize.py b/src/xfel_calibrate/finalize.py
index ed6f36fe0..ba24bb226 100644
--- a/src/xfel_calibrate/finalize.py
+++ b/src/xfel_calibrate/finalize.py
@@ -235,7 +235,7 @@ def make_report(run_path: Path, tmp_path: Path, project: str,
                     "--ext-intersphinx",
                     "--ext-mathjax",
                     "--makefile",
-                    "--no-batchfile", run_path])
+                    "--no-batchfile", run_path], input=b'')
 
     except CalledProcessError:
         raise Exception("Failed to run sphinx-quickstart. Is sphinx installed?"
@@ -317,7 +317,7 @@ def make_report(run_path: Path, tmp_path: Path, project: str,
     chdir(run_path)
     try:
         check_call(["make", f"SPHINXBUILD={sys.executable} -m sphinx",
-                    "latexpdf"])
+                    "latexpdf"], input=b'')
 
     except CalledProcessError:
         print("Failed to make pdf documentation")
-- 
GitLab