Skip to content

Commit

Permalink
Skip some tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Dec 11, 2024
1 parent 852395f commit 86df897
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Tests/ScipioKitTests/RunnerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,11 @@ final class RunnerTests: XCTestCase {
}

func testExtractBinary() async throws {
try XCTSkipIf(
ProcessInfo.processInfo.environment["CI"] == "true",
"Somehow unstable in CI"
)

let runner = Runner(
mode: .createPackage,
options: .init(
Expand All @@ -442,7 +447,7 @@ final class RunnerTests: XCTestCase {
shouldOnlyUseVersionsFromResolvedFile: true,
cachePolicies: [.project],
overwrite: false,
verbose: ProcessInfo.processInfo.environment["CI"] == "true"
verbose: false
)
)

Expand Down

0 comments on commit 86df897

Please sign in to comment.