Skip to content

Commit 7904c32

Browse files
committed
Add initial testing for the 16.1 base containers
1 parent 1dd6506 commit 7904c32

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,14 @@ jobs:
206206
os_version: "16.0"
207207
- toxenv: repository
208208
os_version: "16.0"
209+
- toxenv: all
210+
os_version: "16.1"
211+
- toxenv: base
212+
os_version: "16.1"
213+
- toxenv: minimal
214+
os_version: "16.1"
215+
- toxenv: metadata
216+
os_version: "16.1"
209217
- toxenv: base
210218
testing_target: factory-totest
211219
os_version: "tumbleweed"

bci_tester/data.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"15.6",
4343
"15.7",
4444
"16.0",
45+
"16.1",
4546
"tumbleweed",
4647
)
4748

@@ -73,7 +74,7 @@
7374
_DEFAULT_NONBASE_OS_VERSIONS = ("15.7", "16.0", "tumbleweed")
7475

7576
# Test base containers by default for these versions
76-
_DEFAULT_BASE_OS_VERSIONS = ("15.7", "16.0", "tumbleweed")
77+
_DEFAULT_BASE_OS_VERSIONS = ("15.7", "16.0", "16.1", "tumbleweed")
7778

7879
# List the released versions of SLE, used for supportability and EULA tests
7980
RELEASED_SLE_VERSIONS = (
@@ -181,7 +182,7 @@
181182
if BASEURL.endswith("/"):
182183
BASEURL = BASEURL[:-1]
183184
else:
184-
if OS_VERSION in ("tumbleweed", "16.0"):
185+
if OS_VERSION in ("tumbleweed", "16.0", "16.1"):
185186
DISTNAME = OS_VERSION
186187
else:
187188
DISTNAME = f"sle-{OS_MAJOR_VERSION}-sp{OS_SP_VERSION}"

tests/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def test_disturl(
670670
"obs://build.suse.de/SUSE:SLFO:Products:PublicCloud:Toolchain:2025"
671671
in disturl
672672
)
673-
elif OS_VERSION == "16.0":
673+
elif OS_VERSION.startswith("16."):
674674
if baseurl.netloc == "registry.opensuse.org":
675675
assert (
676676
f"obs://build.opensuse.org/devel:BCI:16.{OS_SP_VERSION}"

0 commit comments

Comments
 (0)