Skip to content

Commit 8868889

Browse files
authored
[chore] Skip webfinger test on CI (#1983)
1 parent 1951e6c commit 8868889

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internal/transport/finger_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ package transport_test
1919

2020
import (
2121
"context"
22+
"os"
2223
"testing"
2324
"time"
2425

@@ -42,6 +43,10 @@ func (suite *FingerTestSuite) TestFinger() {
4243
}
4344

4445
func (suite *FingerTestSuite) TestFingerWithHostMeta() {
46+
if os.Getenv("CI") == "true" {
47+
suite.T().Skip("this test is flaky on CI for as of yet unknown reasons")
48+
}
49+
4550
wc := suite.state.Caches.GTS.Webfinger()
4651
suite.Equal(0, wc.Len(), "expect webfinger cache to be empty")
4752

0 commit comments

Comments
 (0)