diff options
author | Naoto Kobayashi <naoto.kobayashi4c@gmail.com> | 2022-08-07 23:28:51 +0900 |
---|---|---|
committer | Naoto Kobayashi <naoto.kobayashi4c@gmail.com> | 2022-08-08 01:51:32 +0900 |
commit | b1d1248a18525598d8468d30a176fd2eaadcfd97 (patch) | |
tree | 31f66c5dc3a549df5d463c654d9f5e06e2bb9a6c /pkg/bindings/test | |
parent | 635293ed149a6680c5999360ce39daf4625bfa92 (diff) | |
download | podman-b1d1248a18525598d8468d30a176fd2eaadcfd97.tar.gz podman-b1d1248a18525598d8468d30a176fd2eaadcfd97.tar.bz2 podman-b1d1248a18525598d8468d30a176fd2eaadcfd97.zip |
pkg/bindings: Support writing image push progress to specified io.Writer
Currently bindings writes image push progress to os.Stderr.
Since os.Stderr is inconvenience for bindings caller to
process the progress messages, Added this support.
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
Diffstat (limited to 'pkg/bindings/test')
-rw-r--r-- | pkg/bindings/test/images_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/bindings/test/images_test.go b/pkg/bindings/test/images_test.go index 8f76ce456..9c9796661 100644 --- a/pkg/bindings/test/images_test.go +++ b/pkg/bindings/test/images_test.go @@ -379,6 +379,10 @@ var _ = Describe("Podman images", func() { Expect(err).To(HaveOccurred()) }) + It("Image Push", func() { + Skip("TODO: implement test for image push to registry") + }) + It("Build no options", func() { results, err := images.Build(bt.conn, []string{"fixture/Containerfile"}, entities.BuildOptions{}) Expect(err).ToNot(HaveOccurred()) |