mirror of
https://github.com/go-gitea/gitea
synced 2025-08-15 22:18:26 +00:00
Skip known flaky queue
tests on CI environment (#24443)
Backport of https://github.com/go-gitea/gitea/pull/24419 to 1.19.
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
package queue
|
||||
|
||||
import (
|
||||
"os"
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
@@ -101,6 +102,9 @@ func TestChannelQueue_Batch(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestChannelQueue_Pause(t *testing.T) {
|
||||
if os.Getenv("CI") != "" {
|
||||
t.Skip("Skipping because test is flaky on CI")
|
||||
}
|
||||
lock := sync.Mutex{}
|
||||
var queue Queue
|
||||
var err error
|
||||
|
Reference in New Issue
Block a user