Skip some auth tests on windows that are already covered

This commit is contained in:
Viktor Liu
2025-10-07 23:39:01 +02:00
parent d9efe4e944
commit f3d31698da
2 changed files with 15 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ import (
"net/http"
"net/http/httptest"
"os"
"runtime"
"strconv"
"testing"
"time"
@@ -107,6 +108,11 @@ func TestSSHProxy_Connect(t *testing.T) {
t.Skip("Skipping integration test in short mode")
}
// TODO: Windows test times out - user switching and command execution tested on Linux
if runtime.GOOS == "windows" {
t.Skip("Skipping on Windows - covered by Linux tests")
}
const (
issuer = "https://test-issuer.example.com"
audience = "test-audience"