skip TestCheckTCPPassing on CircleCI
This commit is contained in:
parent
abc5478b51
commit
3df8d84aae
|
@ -517,6 +517,9 @@ func TestCheckTCPPassing(t *testing.T) {
|
|||
if os.Getenv("TRAVIS") == "true" {
|
||||
t.Skip("IPV6 not supported on travis-ci")
|
||||
}
|
||||
if os.Getenv("CIRCLECI") == "true" {
|
||||
t.Skip("IPV6 not supported on CircleCI")
|
||||
}
|
||||
tcpServer = mockTCPServer(`tcp6`)
|
||||
expectTCPStatus(t, tcpServer.Addr().String(), api.HealthPassing)
|
||||
tcpServer.Close()
|
||||
|
|
Loading…
Reference in New Issue