You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Package.swift
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -241,24 +241,31 @@ let package = Package(
241
241
.swiftLanguageVersion(.v6)
242
242
]
243
243
),
244
-
.target(
245
244
// swift-corelibs-foundation has a copy of XCTest's sources so:
246
245
// (1) we do not depend on the toolchain's XCTest, which depends on toolchain's Foundation, which we cannot pull in at the same time as a Foundation package
247
246
// (2) we do not depend on a swift-corelibs-xctest Swift package, which depends on Foundation, which causes a circular dependency in swiftpm
248
247
// We believe Foundation is the only project that needs to take this rather drastic measure.
248
+
// We also have a stub for swift-testing for the same purpose, but without an implementation since this package has no swift-testing style tests
0 commit comments