mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
ci: remove special casing for AppVeyor (#3753)
We dropped AppVeyor a long time ago.
This commit is contained in:
parent
969b5dc131
commit
a0f032ee18
1 changed files with 0 additions and 9 deletions
|
@ -5,7 +5,6 @@ import (
|
|||
"crypto/tls"
|
||||
"errors"
|
||||
"net"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
mocklogging "github.com/quic-go/quic-go/internal/mocks/logging"
|
||||
|
@ -102,10 +101,6 @@ var _ = Describe("Client", func() {
|
|||
})
|
||||
|
||||
It("resolves the address", func() {
|
||||
if os.Getenv("APPVEYOR") == "True" {
|
||||
Skip("This test is flaky on AppVeyor.")
|
||||
}
|
||||
|
||||
manager := NewMockPacketHandlerManager(mockCtrl)
|
||||
manager.EXPECT().Add(gomock.Any(), gomock.Any())
|
||||
manager.EXPECT().Destroy()
|
||||
|
@ -391,10 +386,6 @@ var _ = Describe("Client", func() {
|
|||
})
|
||||
|
||||
It("closes the connection when it was created by DialAddr", func() {
|
||||
if os.Getenv("APPVEYOR") == "True" {
|
||||
Skip("This test is flaky on AppVeyor.")
|
||||
}
|
||||
|
||||
manager := NewMockPacketHandlerManager(mockCtrl)
|
||||
mockMultiplexer.EXPECT().AddConn(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(manager, nil)
|
||||
manager.EXPECT().Add(gomock.Any(), gomock.Any())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue