From 7061d8951782c6f67d433f646263c335f0cf6b3a Mon Sep 17 00:00:00 2001 From: Amitai Burstein Date: Fri, 21 Nov 2025 08:31:39 +0200 Subject: [PATCH] Fail phpunit parallel testing if a test fails --- .ddev/commands/web/phpunit | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ddev/commands/web/phpunit b/.ddev/commands/web/phpunit index 7509752c8..467d2409d 100755 --- a/.ddev/commands/web/phpunit +++ b/.ddev/commands/web/phpunit @@ -4,6 +4,8 @@ ## Usage: phpunit [arguments] ## Example: "ddev phpunit" or "ddev phpunit web/modules/custom/server_general". +set -euo pipefail + # Function to check if path contains sequential group tests needs_sequential() { local path="$1"