Skip to content

Commit df717c1

Browse files
authored
Merge pull request #1026 from SUSE/thirdparty_sle16
More exceptions for the nvidia container
2 parents eadee80 + be2cb1a commit df717c1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

tests/test_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def test_udev_not_installed_in_all_containers_except_init(container):
551551

552552
@pytest.mark.parametrize(
553553
"container",
554-
ALL_CONTAINERS,
554+
[c for c in ALL_CONTAINERS if (c not in NVIDIA_CONTAINERS)],
555555
indirect=True,
556556
)
557557
def test_no_compat_packages(container):

tests/test_metadata.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,11 @@ def test_disturl(
681681
"obs://build.suse.de/SUSE:SLFO:Products:PublicCloud:Toolchain:2025"
682682
in disturl
683683
)
684+
elif OS_VERSION == "16.0-third-party" and TARGET in ("ibs", "ibs-cr"):
685+
assert (
686+
"obs://build.suse.de/Product:SUSE-Containers-ThirdParty:16.0"
687+
in disturl
688+
)
684689
elif OS_VERSION.startswith("16."):
685690
if baseurl.netloc == "registry.opensuse.org":
686691
assert (

0 commit comments

Comments
 (0)