mirror of
https://github.com/containers/podman.git
synced 2025-11-03 15:56:51 +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 (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
"github.com/containers/podman/v4/pkg/machine"
|
||||||
. "github.com/onsi/ginkgo/v2"
|
. "github.com/onsi/ginkgo/v2"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
. "github.com/onsi/gomega/gexec"
|
. "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() {
|
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()
|
name := randomString()
|
||||||
i := new(initMachine)
|
i := new(initMachine)
|
||||||
session, err := mb.setName(name).setCmd(i.withImagePath(mb.imagePath)).run()
|
session, err := mb.setName(name).setCmd(i.withImagePath(mb.imagePath)).run()
|
||||||
|
|||||||
Reference in New Issue
Block a user