aboutsummaryrefslogtreecommitdiff
path: root/internal/db/actions_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/actions_test.go')
-rw-r--r--internal/db/actions_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/db/actions_test.go b/internal/db/actions_test.go
index aa6bbf4e..15e11e9f 100644
--- a/internal/db/actions_test.go
+++ b/internal/db/actions_test.go
@@ -720,6 +720,10 @@ func actionsNewRepo(t *testing.T, db *actions) {
func actionsPushTag(t *testing.T, db *actions) {
ctx := context.Background()
+ // NOTE: We set a noop mock here to avoid data race with other tests that writes
+ // to the mock server because this function holds a lock.
+ conf.SetMockServer(t, conf.ServerOpts{})
+
alice, err := NewUsersStore(db.DB).Create(ctx, "alice", "alice@example.com", CreateUserOptions{})
require.NoError(t, err)
repo, err := NewReposStore(db.DB).Create(ctx,