diff options
author | Joe Chen <jc@unknwon.io> | 2023-02-05 16:28:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 16:28:47 +0800 |
commit | 7ff09cf35916cad50495c26a47f4c0d05487e24e (patch) | |
tree | dc4516234c3a8e72051e2ab1674adb7e7c32c3cc /internal/db/actions_test.go | |
parent | 3c43b9b21c74faf60d62b2cbf2ee89e9ada37f0c (diff) |
refactor(db): migrate methods off `user.go` (#7336)
Diffstat (limited to 'internal/db/actions_test.go')
-rw-r--r-- | internal/db/actions_test.go | 4 |
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, |