Skip to content

Commit

Permalink
try to skip only gpu spmd tests
Browse files Browse the repository at this point in the history
  • Loading branch information
julia.roznova committed Dec 4, 2024
1 parent 48b70a1 commit c9b2578
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/run_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,10 @@ def get_exe_cmd(ex, args):
if args.nodaal4py:
return None
if not check_version(req_version[os.path.basename(ex)], get_daal_version()):
print("daal4py check_version return None");

Check notice on line 209 in tests/run_examples.py

View check run for this annotation

codefactor.io / CodeFactor

tests/run_examples.py#L209

Statement ends with a semicolon. (E703)
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)]))):
print("daal4py check_library return None");

Check notice on line 212 in tests/run_examples.py

View check run for this annotation

codefactor.io / CodeFactor

tests/run_examples.py#L212

Statement ends with a semicolon. (E703)
return None

if os.path.dirname(ex).endswith("sklearnex"):
Expand Down

0 comments on commit c9b2578

Please sign in to comment.