Skip to content

Commit ccb1720

Browse files
committed
test: fix missing testutil.pull_container() in test_progress.py
1 parent e70e311 commit ccb1720

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/test_progress.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414

1515
def test_progress_debug(tmp_path, build_fake_container):
16+
container_ref = "quay.io/centos-bootc/centos-bootc:stream9"
17+
testutil.pull_container(container_ref)
18+
1619
output_path = tmp_path / "output"
1720
output_path.mkdir(exist_ok=True)
1821

@@ -21,7 +24,7 @@ def test_progress_debug(tmp_path, build_fake_container):
2124
build_fake_container,
2225
"build",
2326
"--progress=debug",
24-
"quay.io/centos-bootc/centos-bootc:stream9",
27+
container_ref,
2528
]
2629
res = subprocess.run(cmdline, capture_output=True, check=True, text=True)
2730
assert res.stderr.count("Start progressbar") == 1

0 commit comments

Comments
 (0)