From ec5a5c4c75e20aa4c2b1c0f9fe7e9ce5d9cf30ff Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Wed, 15 Jan 2025 20:15:36 +0100 Subject: [PATCH] Skip building catalogue to enable debugging --- python/test/fixtures.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/python/test/fixtures.py b/python/test/fixtures.py index 9ec496eb7..48b3145a5 100644 --- a/python/test/fixtures.py +++ b/python/test/fixtures.py @@ -110,12 +110,13 @@ class _BuildCatError(Exception): def _build_cat_local(name, path): try: - subprocess.run( - ["arbor-build-catalogue", name, str(path)], - check=True, - stderr=subprocess.PIPE, - stdout=subprocess.PIPE, - ) + pass + # subprocess.run( + # ["arbor-build-catalogue", name, str(path)], + # check=True, + # stderr=subprocess.PIPE, + # stdout=subprocess.PIPE, + # ) except subprocess.CalledProcessError as e: raise _BuildCatError( f"Tests can't build catalogue '{name}' from '{path}':\n"