0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-06-12 07:13:57 +02:00

correctly add the migration for size limit / fix test

This commit is contained in:
DmitryFrolovTri 2025-12-09 13:33:54 +00:00
parent f4dff6a1dc
commit 758f4f3376
No known key found for this signature in database
GPG Key ID: 0FBA4D49377CDDC3
2 changed files with 2 additions and 4 deletions

View File

@ -400,7 +400,7 @@ func prepareMigrationTasks() []*migration {
newMigration(323, "Add support for actions concurrency", v1_26.AddActionsConcurrency),
// to modify later
newMigration(999, "Add size limit on repository", v1_26.AddSizeLimitOnRepo),
newMigration(324, "Add size limit on repository", v1_26.AddSizeLimitOnRepo),
}
return preparedMigrations
}

View File

@ -66,8 +66,6 @@ func testGitGeneral(t *testing.T, u *url.URL) {
dstPath := t.TempDir()
dstForkedPath := t.TempDir()
t.Run("CreateRepoInDifferentUser", doAPICreateRepository(forkedUserCtx, false))
t.Run("AddUserAsCollaborator", doAPIAddCollaborator(forkedUserCtx, httpContext.Username, perm.AccessModeRead))
@ -88,6 +86,7 @@ func testGitGeneral(t *testing.T, u *url.URL) {
mediaTest(t, &httpContext, pushedFilesStandard[0], pushedFilesStandard[1], pushedFilesLFS[0], pushedFilesLFS[1])
t.Run("SizeLimit", func(t *testing.T) {
dstForkedPath := t.TempDir()
setting.SaveGlobalRepositorySetting(true, 0)
t.Run("Under", func(t *testing.T) {
defer tests.PrintCurrentTest(t)()
@ -120,7 +119,6 @@ func testGitGeneral(t *testing.T, u *url.URL) {
})
})
t.Run("CreateAgitFlowPull", doCreateAgitFlowPull(dstPath, &httpContext, "test/head"))
t.Run("CreateAgitFlowPull", doCreateAgitFlowPull(dstPath, &httpContext, "test/head"))
t.Run("CreateProtectedBranch", doCreateProtectedBranch(&httpContext, dstPath))
t.Run("BranchProtectMerge", doBranchProtectPRMerge(&httpContext, dstPath))
t.Run("AutoMerge", doAutoPRMerge(&httpContext, dstPath))