Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Listen on event for image build #507

Merged
merged 1 commit into from
Oct 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ class Application extends React.Component {
case 'untag':
case 'remove':
case 'prune':
case 'build':
this.updateImagesAfterEvent(system);
break;
default:
Expand Down
6 changes: 0 additions & 6 deletions test/check-application
Original file line number Diff line number Diff line change
Expand Up @@ -485,12 +485,6 @@ class TestApplication(testlib.MachineCase):
self.execute(auth, "echo 'FROM docker.io/library/registry:2\nRUN ls' > {0}/Dockerfile".format(tmpdir))
self.execute(auth, "podman build {0}".format(tmpdir))

# HACK due to https://github.com/containers/podman/issues/7022
b.reload()
b.enter_page("/podman")
b.wait_present(".listing-action")
b.wait_in_text("#containers-images", "registry")

b.wait_not_in_text("#containers-images", "<none>:<none>")
b.click(".listing-action button:contains('Show intermediate images')")
b.wait_in_text("#containers-images", "<none>:<none>")
Expand Down