Skip to content

Commit

Permalink
test: skip cancel test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Apr 12, 2024
1 parent e8a003d commit eb9abf6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/test/cancel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
"net/http/httptest"
"os"
"path/filepath"
"runtime"
"slices"
"testing"
"time"
Expand All @@ -46,6 +47,10 @@ import (
)

func TestCancelFileAPI(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}

ctx := context.Background()
logger := log.NewTestLogger()

Expand Down

0 comments on commit eb9abf6

Please sign in to comment.