Propagate first-pass failures in the test task

The two `swift test` passes were joined with `;`, so a failing main
pass was masked by a green limit-test pass.
This commit is contained in:
T. R. Bernstein
2026-09-13 22:28:26 +02:00
parent 8cedee6139
commit 39f3428bff
+1 -1
View File
@@ -30,7 +30,7 @@ struct TestCommand: AsyncParsableCommand {
"--security-opt", "systempaths=unconfined", "--security-opt", "systempaths=unconfined",
"--platform", Docker.getLinuxPlatformStringWithHostArchitecture(), "--platform", Docker.getLinuxPlatformStringWithHostArchitecture(),
"-w", "/code", "swift:latest", "-w", "/code", "swift:latest",
"/bin/bash", "-c", "swift test --skip InotifyLimitTests; swift test --skip-build --filter InotifyLimitTests" "/bin/bash", "-c", "swift test --skip InotifyLimitTests && swift test --skip-build --filter InotifyLimitTests"
], ],
output: .currentStandardOutput, output: .currentStandardOutput,
error: .currentStandardError error: .currentStandardError