From 1e71ba71ab0b578fa151826b00546cd8d90a7d75 Mon Sep 17 00:00:00 2001 From: "julia.roznova" Date: Wed, 27 Nov 2024 06:39:22 -0800 Subject: [PATCH] try to skip only gpu spmd tests --- tests/run_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_examples.py b/tests/run_examples.py index ba84c26968..7477bb8a9c 100755 --- a/tests/run_examples.py +++ b/tests/run_examples.py @@ -207,7 +207,7 @@ def get_exe_cmd(ex, args): return None if not check_version(req_version[os.path.basename(ex)], get_daal_version()): return None - if not check_library(req_library[os.path.basename(ex)]): + if not check_library(list(filter(lambda x: x!="dpctl", req_library[os.path.basename(ex)]))): return None if os.path.dirname(ex).endswith("sklearnex"):