Skip to content

Commit

Permalink
Don't run tests in parallel & fix test build warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Dec 12, 2024
1 parent 52d67ca commit e5b2004
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions windows/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-testing",
"state" : {
"branch" : "399f76",
"revision" : "399f76dcd91e4c688ca2301fa24a8cc6d9927211"
"branch" : "cd448bb",
"revision" : "cd448bbe5cc989d8693ca75e9b08593eb143dea1"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion windows/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-format", from: "600.0.0"),
.package(url: "https://github.com/apple/swift-testing", revision: "399f76"),
.package(url: "https://github.com/apple/swift-testing", revision: "cd448bb"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.2"),
.package(url: "https://github.com/modmuss50/Detours", revision: "23deb11"),
],
Expand Down
2 changes: 1 addition & 1 deletion windows/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ tasks.register("packageRelease") {
}

tasks.register("test", Exec) {
commandLine "swift" , "test", "--disable-xctest", "-Xswiftc", "-g", "-Xswiftc", "-debug-info-format=codeview", "-Xlinker", "-debug"
commandLine "swift" , "test", "--no-parallel", "--disable-xctest", "-Xswiftc", "-g", "-Xswiftc", "-debug-info-format=codeview", "-Xlinker", "-debug"
group "swift"
}

Expand Down

0 comments on commit e5b2004

Please sign in to comment.