Skip to content

Commit

Permalink
[CI] testExtractBinary: Set Runner's verbose flag to true on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Dec 11, 2024
1 parent 843aa46 commit 852395f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tests/ScipioKitTests/RunnerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,8 @@ final class RunnerTests: XCTestCase {
shouldOnlyUseVersionsFromResolvedFile: true,
cachePolicies: [.project],
overwrite: false,
verbose: false)
verbose: ProcessInfo.processInfo.environment["CI"] == "true"
)
)

try await runner.run(packageDirectory: binaryPackagePath, frameworkOutputDir: .custom(frameworkOutputDir))
Expand Down

0 comments on commit 852395f

Please sign in to comment.