From a353edb9e0f31b7db2113b3e0b343b6e16e462ef Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 9 Aug 2026 13:59:44 +0200 Subject: [PATCH] check_call() so that init errors surface earlier --- src/ifcopenshell-python/test/test_wall_opening.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/test/test_wall_opening.py b/src/ifcopenshell-python/test/test_wall_opening.py index a08ff445be..bee724ff93 100644 --- a/src/ifcopenshell-python/test/test_wall_opening.py +++ b/src/ifcopenshell-python/test/test_wall_opening.py @@ -218,7 +218,7 @@ class TestWallOpenings: ts = [] for j in range(10 if PERF else 1): - subprocess.call(args, stdout=subprocess.PIPE) + subprocess.check_call(args, stdout=subprocess.PIPE) log = [json.loads(ln)["message"] for ln in open(fn + ".log.json") if ln] perf = dict(x.groups() for x in [re.match(pat, l) for l in log] if x)