Skip to content

Commit ce654ea

Browse files
authored
Fix plugin incorrect dependencies test known issue (#8839)
This test case is known to fail with an issue when Windows in the smoke test CI, not other cases such as Linux.
1 parent 18156e5 commit ce654ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/FunctionalTests/PluginTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ final class PluginTests {
12531253
let (stdout, stderr) = try await executeSwiftBuild(path.appending("IncorrectDependencies"), extraArgs: ["--build-system", "swiftbuild", "--build-tests"])
12541254
#expect(stdout.contains("Build complete!"), "output:\n\(stderr)\n\(stdout)")
12551255
}
1256-
} when: { ProcessInfo.hostOperatingSystem == .windows || isInCiEnvironment }
1256+
} when: { ProcessInfo.hostOperatingSystem == .windows || (ProcessInfo.hostOperatingSystem == .linux && CiEnvironment.runningInSmokeTestPipeline) }
12571257
}
12581258

12591259
@Test(

0 commit comments

Comments
 (0)