Skip to content

Commit eb9abf6

Browse files
committed
test: skip cancel test on windows
1 parent e8a003d commit eb9abf6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internal/test/cancel_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import (
2525
"net/http/httptest"
2626
"os"
2727
"path/filepath"
28+
"runtime"
2829
"slices"
2930
"testing"
3031
"time"
@@ -46,6 +47,10 @@ import (
4647
)
4748

4849
func TestCancelFileAPI(t *testing.T) {
50+
if runtime.GOOS == "windows" {
51+
t.Skip()
52+
}
53+
4954
ctx := context.Background()
5055
logger := log.NewTestLogger()
5156

0 commit comments

Comments
 (0)