From 263b57abf3637b7a7551bcaf33717f356ca2684c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?James=20Pether=20S=C3=B6rling?= Date: Sat, 18 Jan 2025 00:11:41 +0100 Subject: [PATCH] refactor: update test exclusion patterns in devcontainer configuration --- .devcontainer/devcontainer.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 58ab7d3c33..21c9751dfa 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -90,7 +90,7 @@ "install", "-Prelease-site,all-modules", "-DforkMode=once", - "-Dtest=!**ITest*,!**DocumentationTest*", + "-Dtest='!**ITest*,!**DocumentationTest*'", "-Dmaven.test.failure.ignore=true", "-DfailIfNoTests=false", "-Dsurefire.failIfNoSpecifiedTests=false", @@ -111,12 +111,11 @@ "args": [ "clean", "install", - "-pl !cia-dist-deb", + "-pl '!cia-dist-deb'", "-Dtest=no", "-DfailIfNoTests=false", "-Dsurefire.failIfNoSpecifiedTests=false", - "-Pall-modules", - "-Dhttps.protocols=TLSv1.2" + "-Pall-modules" ], "options": { "cwd": "${workspaceFolder}/parent-pom",