Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions internal/parser/cortex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package parser
import (
"os"
"path/filepath"
"runtime"
"strings"
"testing"

Expand Down Expand Up @@ -187,6 +188,9 @@ func TestParseCortexSession_SplitHistoryJSONL(t *testing.T) {
}

func TestParseCortexSession_SplitHistoryReadError(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("chmod 0o000 does not prevent reads on Windows")
}
dir := t.TempDir()
uuid := cortexTestUUID

Expand Down
Loading