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:
@@ -30,7 +30,7 @@ struct TestCommand: AsyncParsableCommand {
|
||||
"--security-opt", "systempaths=unconfined",
|
||||
"--platform", Docker.getLinuxPlatformStringWithHostArchitecture(),
|
||||
"-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,
|
||||
error: .currentStandardError
|
||||
|
||||
Reference in New Issue
Block a user