Skip to content

Commit 00c72f1

Browse files
committed
test: drop test_progress_term_autoselect as it moved to ibcli
This test is no longer working, it seems its a result of the merge of osbuild/image-builder-cli#316 Drop it for now so that we can move forward with the merge. There is a similar test in https://github.com/osbuild/image-builder-cli/pull/316/files#diff-57c49abc8a31b46856c2eecb2edfeff6072cd8d0edf769a67b6d4fdaabd8321aR100 that does not cover "auto" but any fixes/regression should be done in the ibcli repo.
1 parent 78e8aaf commit 00c72f1

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

test/test_progress.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -57,25 +57,6 @@ def test_progress_term_works_without_tty(tmp_path, build_fake_container):
5757
assert "[|] Manifest generation step" in res.stderr
5858

5959

60-
def test_progress_term_autoselect(tmp_path, build_fake_container):
61-
output_path = tmp_path / "output"
62-
output_path.mkdir(exist_ok=True)
63-
64-
cmdline = [
65-
*testutil.podman_run_common,
66-
# we have a terminal
67-
"-t",
68-
build_fake_container,
69-
"build",
70-
# note that we do not select a --progress here so auto-select is used
71-
"quay.io/centos-bootc/centos-bootc:stream9",
72-
]
73-
res = subprocess.run(cmdline, capture_output=True, text=True, check=False)
74-
assert res.returncode == 0
75-
# its curious that we get the output on stdout here, podman weirdness?
76-
assert "[|] Manifest generation step" in res.stdout
77-
78-
7960
@pytest.mark.skipif(not testutil.can_start_rootful_containers, reason="require a rootful containers (try: sudo)")
8061
@pytest.mark.parametrize("progress", ["term", "verbose"])
8162
def test_progress_error_reporting(tmp_path, build_erroring_container, progress):

0 commit comments

Comments
 (0)