Skip to content

Commit

Permalink
Merge pull request #20138 from ashley-cui/proxytest
Browse files Browse the repository at this point in the history
Skip proxy test for hyperV
  • Loading branch information
openshift-merge-robot authored Sep 25, 2023
2 parents 8a16174 + ec68a74 commit f52e414
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/machine/e2e/proxy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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()
Expand Down

0 comments on commit f52e414

Please sign in to comment.