aboutsummaryrefslogtreecommitdiffstats
path: root/tests/integration/repo_branch_test.go
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2024-11-15 23:45:07 +0800
committerGitHub <noreply@github.com>2024-11-15 23:45:07 +0800
commitecbb03dc6d0e0565663dff977a4fc3d40a1e0c1e (patch)
tree662c4fe1755d323811c3fd3abcb81e256a86326e /tests/integration/repo_branch_test.go
parenta0c0cb3a2c426e39b91e7301c94ddc3a988c8607 (diff)
downloadgitea-ecbb03dc6d0e0565663dff977a4fc3d40a1e0c1e.tar.gz
gitea-ecbb03dc6d0e0565663dff977a4fc3d40a1e0c1e.zip
Improve testing and try to fix MySQL hanging (#32515)
By some CI fine tunes (`run tests`), SQLite & MSSQL could complete in about 12~13 minutes (before > 14), MySQL could complete in 18 minutes (before: about 23 or even > 30) Major changes: 1. use tmpfs for MySQL storage 1. run `make test-mysql` instead of `make integration-test-coverage` because the code coverage is not really used at the moment. 1. refactor testlogger to make it more reliable and be able to report stuck stacktrace 1. do not requeue failed items when a queue is being flushed (failed items would keep failing and make flush uncompleted) 1. reduce the file sizes for testing 1. use math ChaCha20 random data instead of crypot/rand (for testing purpose only) 1. no need to `DeleteRepository` in `TestLinguist` 1. other related refactoring to make code easier to maintain
Diffstat (limited to 'tests/integration/repo_branch_test.go')
-rw-r--r--tests/integration/repo_branch_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/integration/repo_branch_test.go b/tests/integration/repo_branch_test.go
index 6d1cc8afcf..2b4c417334 100644
--- a/tests/integration/repo_branch_test.go
+++ b/tests/integration/repo_branch_test.go
@@ -209,8 +209,6 @@ func checkRecentlyPushedNewBranches(t *testing.T, session *TestSession, repoPath
}
func TestRecentlyPushedNewBranches(t *testing.T) {
- defer tests.PrepareTestEnv(t)()
-
onGiteaRun(t, func(t *testing.T, u *url.URL) {
user1Session := loginUser(t, "user1")
user2Session := loginUser(t, "user2")