Skip to content

Commit 7479364

Browse files
committed
Add initial testing for the 16.1 base containers
1 parent c168bfb commit 7479364

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-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: 4 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

@@ -63,6 +64,7 @@
6364
"15.7",
6465
"15.7-spr",
6566
"16.0",
67+
"16.1",
6668
"tumbleweed",
6769
)
6870

@@ -73,7 +75,7 @@
7375
_DEFAULT_NONBASE_OS_VERSIONS = ("15.7", "16.0", "tumbleweed")
7476

7577
# Test base containers by default for these versions
76-
_DEFAULT_BASE_OS_VERSIONS = ("15.7", "16.0", "tumbleweed")
78+
_DEFAULT_BASE_OS_VERSIONS = ("15.7", "16.0", "16.1", "tumbleweed")
7779

7880
# List the released versions of SLE, used for supportability and EULA tests
7981
RELEASED_SLE_VERSIONS = (
@@ -181,7 +183,7 @@
181183
if BASEURL.endswith("/"):
182184
BASEURL = BASEURL[:-1]
183185
else:
184-
if OS_VERSION in ("tumbleweed", "16.0"):
186+
if OS_VERSION in ("tumbleweed", "16.0", "16.1"):
185187
DISTNAME = OS_VERSION
186188
else:
187189
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)