Skip to content

Commit 95b6ed3

Browse files
committed
add commit and flavor to tests
1 parent 79ebcc9 commit 95b6ed3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/test_push_image.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,17 @@ def test_push_example(version, cname, arch):
3838
features = parse_features.get_features(cname, GARDENLINUX_ROOT_DIR_EXAMPLE)
3939
manifest_file = "/dev/null"
4040

41+
flavor = f"{cname}-{arch}"
42+
commit = "test1234"
43+
4144
a_registry.push_image_manifest(
4245
arch,
4346
cname,
4447
version,
4548
f"{GARDENLINUX_ROOT_DIR_EXAMPLE}/.build",
4649
oci_metadata,
4750
features,
48-
manifest_file=manifest_file,
51+
flavor,
52+
commit,
53+
manifest_file,
4954
)

0 commit comments

Comments
 (0)