Explicitly added testing package
Swift Testing / macOS (push) Failing after 14s
Swift Testing / Windows (push) Failing after 48s
Swift Testing / Ubuntu (push) Canceled after 0s

This commit is contained in:
2026-08-24 08:24:59 -07:00
parent d92d11c75c
commit 2e15755fcd
2 changed files with 33 additions and 2 deletions
+5 -1
View File
@@ -9,6 +9,7 @@ let package = Package(
.executable(name: "SwiftRunnerTesting", targets: ["SwiftRunnerTesting"]),
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-testing", branch: "main"),
.package(url: "https://github.com/onevcat/Rainbow", .upToNextMajor(from: "4.0.0"))
],
targets: [
@@ -18,7 +19,10 @@ let package = Package(
),
.testTarget(
name: "SwiftRunnerTestingTests",
dependencies: ["SwiftRunnerTesting"]
dependencies: [
"swift-testing",
"SwiftRunnerTesting"
]
),
],
swiftLanguageModes: [.v6]