From fba3b7c7d0d8bc605e8cd4476bda61e2c94d2a1a Mon Sep 17 00:00:00 2001 From: Alex McCaskey Date: Tue, 15 Oct 2024 12:15:51 +0000 Subject: [PATCH] fix test failure Signed-off-by: Alex McCaskey --- python/tests/interop/test_interop.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/tests/interop/test_interop.py b/python/tests/interop/test_interop.py index 17e6eebeedb..78d46e576e9 100644 --- a/python/tests/interop/test_interop.py +++ b/python/tests/interop/test_interop.py @@ -6,7 +6,9 @@ # the terms of the Apache License 2.0 which accompanies this distribution. # # ============================================================================ # -import cudaq, pytest, cudaq_test_cpp_algo +import cudaq, pytest + +cudaq_test_cpp_algo = pytest.importorskip('cudaq_test_cpp_algo') @pytest.fixture(autouse=True)