From 163ec5d3e8ef0a114af3a69abec634c47b09e426 Mon Sep 17 00:00:00 2001 From: Renato Mello Date: Wed, 20 Nov 2024 09:42:32 +0400 Subject: [PATCH] fix test --- tests/test_backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_backends.py b/tests/test_backends.py index 85fb18f3a3..9ac9ed26b6 100644 --- a/tests/test_backends.py +++ b/tests/test_backends.py @@ -113,7 +113,7 @@ def test_construct_backend(backend): def test_list_available_backends(): - tensorflow = False if platform.system() == "Windows" else True + tensorflow = False if platform.system() in ["Windows", "Darwin"] else True qulacs = ( False if platform.system() == "Darwin" and sys.version_info[1] == 9 else True )