Skip to content

Commit

Permalink
Merge pull request #703 from SUSE/skip-appcol-on-ppc-s390x
Browse files Browse the repository at this point in the history
[appcol] Skip application collection containers on non aarch64 & x86_64
  • Loading branch information
grisu48 authored Dec 12, 2024
2 parents 926b9b5 + aeade45 commit 0d76fa5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions bci_tester/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,15 @@ def create_BCI(
for m in extra_marks:
marks.append(m)

if bci_type in (ImageType.SAC_APPLICATION, ImageType.SAC_LANGUAGE_STACK):
marks.append(
pytest.mark.skipif(
condition=LOCALHOST.system_info.arch
not in ("x86_64", "aarch64"),
reason="Application collection containers are only available for x86_64 and aarch64",
)
)

# Ironbank currently has only the "bci-base" image and nothing else, so
# skip all other tests
if TARGET == "dso" and (
Expand Down

0 comments on commit 0d76fa5

Please sign in to comment.