mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-22 09:54:24 +01:00
fix(tests): 30s to cancel processes to avoid false negatives
on slower machines it can take more than 1 second to cancel leftover tasks
This commit is contained in:
parent
c7b8a434c3
commit
6316e21be2
|
@ -224,7 +224,7 @@ func PrepareTestEnv(t testing.TB, skip ...int) func() {
|
||||||
|
|
||||||
// kill all background processes to prevent them from interfering with the fixture loading
|
// kill all background processes to prevent them from interfering with the fixture loading
|
||||||
// see https://codeberg.org/forgejo/forgejo/issues/2962
|
// see https://codeberg.org/forgejo/forgejo/issues/2962
|
||||||
cancelProcesses(t, time.Second)
|
cancelProcesses(t, 30*time.Second)
|
||||||
t.Cleanup(func() { cancelProcesses(t, 0) }) // cancel remaining processes in a non-blocking way
|
t.Cleanup(func() { cancelProcesses(t, 0) }) // cancel remaining processes in a non-blocking way
|
||||||
|
|
||||||
// load database fixtures
|
// load database fixtures
|
||||||
|
|
Loading…
Reference in a new issue