Chore: skip flaky tests (#58835)

skip flaky tests
This commit is contained in:
Artur Wierzbicki 2022-11-16 15:23:49 +00:00 committed by GitHub
parent 934fb2f0ee
commit 7bf3e28e8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,11 @@ import (
)
func TestIntegrationCreateAndDelete(t *testing.T) {
if true {
// TODO: re-enable after fixing its flakiness
t.Skip()
}
if testing.Short() {
t.Skip("skipping integration test")
}
@ -124,6 +129,11 @@ func createQuery(t *testing.T, ctx context.Context, testCtx testContext) string
}
func TestIntegrationDashboardGetWithLatestSavedQueries(t *testing.T) {
if true {
// TODO: re-enable after fixing its flakiness
t.Skip()
}
if testing.Short() {
t.Skip("skipping integration test")
}