mirror of
https://github.com/containers/podman.git
synced 2025-11-01 22:32:50 +08:00
Skip proxy test for hyperV
Currently proxys are not supported on hyperV, skip the test and document it for now. Opened https://github.com/containers/podman/issues/20129 to track the issue. Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
@ -3,6 +3,7 @@ package e2e_test
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/containers/podman/v4/pkg/machine"
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
. "github.com/onsi/gomega/gexec"
|
||||
@ -22,6 +23,10 @@ var _ = Describe("podman machine proxy settings propagation", func() {
|
||||
})
|
||||
|
||||
It("ssh to running machine and check proxy settings", func() {
|
||||
// https://github.com/containers/podman/issues/20129
|
||||
if testProvider.VMType() == machine.HyperVVirt {
|
||||
Skip("proxy settings not yet supported")
|
||||
}
|
||||
name := randomString()
|
||||
i := new(initMachine)
|
||||
session, err := mb.setName(name).setCmd(i.withImagePath(mb.imagePath)).run()
|
||||
|
||||
Reference in New Issue
Block a user