Chore: skip flakey FS API tests (#62087)

skip flakey tests
pull/62632/head
Artur Wierzbicki 3 years ago committed by GitHub
parent c6f4eb4282
commit c8e7e7ccf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkg/infra/filestorage/fs_integration_test.go

@ -170,6 +170,10 @@ func runTests(createCases func() []fsTestCase, t *testing.T) {
}
func TestIntegrationFsStorage(t *testing.T) {
if true {
t.Skip("flakey tests - skipping")
}
if testing.Short() {
t.Skip("skipping integration test")
}

Loading…
Cancel
Save