From 33a542672fcbcd335c010bad07956baab2e16615 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Mon, 29 Dec 2025 14:08:51 +0100 Subject: [PATCH] fix(test/client): implement pipeline testing skip in teardown function --- client/src/test/java/client/ServerUtilsTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/test/java/client/ServerUtilsTest.java b/client/src/test/java/client/ServerUtilsTest.java index fe16ba3..a493524 100644 --- a/client/src/test/java/client/ServerUtilsTest.java +++ b/client/src/test/java/client/ServerUtilsTest.java @@ -47,6 +47,8 @@ class ServerUtilsTest { @AfterEach void tearDown() throws IOException, InterruptedException { + // Not applicable in pipeline testing + Assumptions.assumeTrue(dv.isServerAvailable(), "Server not available"); dv.getRecipes().stream().map(Recipe::getId).forEach(id -> { try { dv.deleteRecipe(id);