Skip to content

Commit 8761ac3

Browse files
committed
updates
1 parent f6fb43b commit 8761ac3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Sources/Commands/SwiftTestCommand.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -730,8 +730,6 @@ extension SwiftExecuteTestAsyncCommand {
730730
} else {
731731
[]
732732
}
733-
print("covPath: \(covPath)")
734-
print("codeCoveFiles: \(codeCovFiles)")
735733

736734
// Construct arguments for invoking the llvm-prof tool.
737735
var args = [llvmProf.pathString, "merge", "-sparse"]
@@ -742,7 +740,6 @@ extension SwiftExecuteTestAsyncCommand {
742740
}
743741
}
744742
args += ["-o", productsBuildParameters.codeCovDataFile.pathString]
745-
print("Merging raw data files.. calling >> \(args)")
746743
try await AsyncProcess.checkNonZeroExit(arguments: args)
747744
return productsBuildParameters.codeCovDataFile
748745
}
@@ -819,7 +816,6 @@ extension SwiftExecuteTestAsyncCommand {
819816
// Add all the production source files of the test targets
820817
args.append(contentsOf: sourceFiles.map { $0.pathString })
821818

822-
// print("Generating HTML report. calling >>> \(args)")
823819
let result = try await AsyncProcess.popen(arguments: args)
824820

825821
if result.exitStatus != .terminated(code: 0) {

0 commit comments

Comments
 (0)