build(deps): bump github.com/mark3labs/mcp-go from 0.16.0 to 0.18.0

This commit is contained in:
Marc Nuri
2025-04-07 11:12:03 +02:00
committed by GitHub
parent c146bd67aa
commit a276dc20a9
3 changed files with 7 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import (
"github.com/mark3labs/mcp-go/mcp"
"os"
"path/filepath"
"runtime"
"slices"
"strings"
"testing"
@@ -12,6 +13,9 @@ import (
)
func TestWatchKubeConfig(t *testing.T) {
if runtime.GOOS != "linux" {
t.Skip("Skipping test on non-linux platforms")
}
testCase(t, func(c *mcpContext) {
// Given
withTimeout, cancel := context.WithTimeout(c.ctx, 5*time.Second)