mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
[chore] Skip webfinger test on CI (#1983)
This commit is contained in:
parent
1951e6c840
commit
88688899aa
1 changed files with 5 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
|
@ -42,6 +43,10 @@ func (suite *FingerTestSuite) TestFinger() {
|
|||
}
|
||||
|
||||
func (suite *FingerTestSuite) TestFingerWithHostMeta() {
|
||||
if os.Getenv("CI") == "true" {
|
||||
suite.T().Skip("this test is flaky on CI for as of yet unknown reasons")
|
||||
}
|
||||
|
||||
wc := suite.state.Caches.GTS.Webfinger()
|
||||
suite.Equal(0, wc.Len(), "expect webfinger cache to be empty")
|
||||
|
||||
|
|
Loading…
Reference in a new issue