Skip to content

Commit d0fae5e

Browse files
committed
AIPCC-8057: skip libnvidia-ml.so dependency check in CUDA AIPCC image
1 parent cd3fdd5 commit d0fae5e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/containers/base_image_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ def check_elf_file():
128128
continue # it's in ${MPI_HOME}/lib
129129
if deps.startswith("liboshmem.so"):
130130
continue # it's in ${MPI_HOME}/lib
131+
# AIPCC-8057: Unsatisfied library dependencies on libnvidia-ml.so in the cuda aipcc image
132+
if deps.startswith("libnvidia-ml.so"):
133+
continue # it does not seem to be in the image
131134

132135
with subtests.test(f"{dlib=}"):
133136
pytest.fail(f"{dlib=} has unsatisfied dependencies {deps=}")

0 commit comments

Comments
 (0)