diff --git a/claudetool/browse/browse_test.go b/claudetool/browse/browse_test.go index 60af4107c351fbce5351f74a0b903ba9f18ea6e2..854e0cf5d07df52032c08452a08aab9a0879e4da 100644 --- a/claudetool/browse/browse_test.go +++ b/claudetool/browse/browse_test.go @@ -151,6 +151,11 @@ func TestNavigateTool(t *testing.T) { t.Skip("skipping navigate tool test in short mode") } + // Skip on ci.bold.dev where chromium snap doesn't work in cgroups + if hostname, _ := os.Hostname(); strings.Contains(hostname, "bold.dev") { + t.Skip("skipping browser test on ci.bold.dev") + } + // Create browser tools instance ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second) defer cancel()