We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8a003d commit eb9abf6Copy full SHA for eb9abf6
1 file changed
internal/test/cancel_test.go
@@ -25,6 +25,7 @@ import (
25
"net/http/httptest"
26
"os"
27
"path/filepath"
28
+ "runtime"
29
"slices"
30
"testing"
31
"time"
@@ -46,6 +47,10 @@ import (
46
47
)
48
49
func TestCancelFileAPI(t *testing.T) {
50
+ if runtime.GOOS == "windows" {
51
+ t.Skip()
52
+ }
53
+
54
ctx := context.Background()
55
logger := log.NewTestLogger()
56
0 commit comments