Skip to content

Commit

Permalink
update test to skip for walrus
Browse files Browse the repository at this point in the history
  • Loading branch information
gregns1 committed Jun 27, 2024
1 parent 0e483fb commit f4b1323
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions rest/api_collections_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,9 @@ func TestCollectionStats(t *testing.T) {
// - Get conflict error on collection update and assert that the runtime config rolls back to the old config for
// database db1
func TestRuntimeConfigUpdateAfterConfigUpdateConflict(t *testing.T) {
if base.UnitTestUrlIsWalrus() {
t.Skip("This test doesn't works with walrus")
}
base.TestRequiresCollections(t)

ctx := base.TestCtx(t)
Expand Down Expand Up @@ -1058,6 +1061,9 @@ func TestRuntimeConfigUpdateAfterConfigUpdateConflict(t *testing.T) {
// - Fetch runtime config and assert the scope config matches what we expect
// - Assert we can perform crud operations against each collection 1 and 2
func TestRaceBetweenConfigPollAndDbConfigUpdate(t *testing.T) {
if base.UnitTestUrlIsWalrus() {
t.Skip("This test doesn't works with walrus")
}
base.SetUpTestLogging(t, base.LevelDebug, base.KeyAll)
base.TestRequiresCollections(t)

Expand Down

0 comments on commit f4b1323

Please sign in to comment.