forked from quic-go/quic-go
Merge pull request #1054 from lucas-clemente/disable-flaky-appveyor-test
disable flaky client test on AppVeyor
This commit is contained in:
@@ -5,6 +5,7 @@ import (
|
||||
"crypto/tls"
|
||||
"errors"
|
||||
"net"
|
||||
"os"
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
@@ -167,6 +168,9 @@ var _ = Describe("Client", func() {
|
||||
})
|
||||
|
||||
It("resolves the address", func() {
|
||||
if os.Getenv("APPVEYOR") == "True" {
|
||||
Skip("This test is flaky on AppVeyor.")
|
||||
}
|
||||
closeErr := errors.New("peer doesn't reply")
|
||||
remoteAddrChan := make(chan string)
|
||||
newClientSession = func(
|
||||
|
||||
Reference in New Issue
Block a user