correctly add the migration for size limit / fix test

This commit is contained in:
DmitryFrolovTri
2025-12-09 17:26:06 +00:00
parent f4dff6a1dc
commit 758f4f3376
2 changed files with 2 additions and 4 deletions
+1 -1
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
}
+1 -3
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))