Disable TestPoolBackgroundChecksMinConns on Windows

https://github.com/jackc/pgx/issues/1690
pull/1693/head
Jack Christensen 2023-07-19 21:20:26 -05:00
parent 2506cf3666
commit 88b49d48f6
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import (
"errors"
"fmt"
"os"
"runtime"
"sync/atomic"
"testing"
"time"
@ -586,6 +587,12 @@ func TestPoolBackgroundChecksMaxConnIdleTime(t *testing.T) {
}
func TestPoolBackgroundChecksMinConns(t *testing.T) {
// jackc: I don't have a good way to investigate this as I don't develop on Windows. Problem started with
// c513e2e435dca8acde76a4a0ed4856b9946b14e0, but I have no idea how. Help wanted. Test disabled on Windows for now.
if runtime.GOOS == "windows" {
t.Skip("Test always runs for 10m and is killed on CI. See https://github.com/jackc/pgx/issues/1690")
}
ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second)
defer cancel()