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-1
Original file line number
Diff line number
Diff line change
@@ -258,24 +258,31 @@ let package = Package(
258
258
.swiftLanguageVersion(.v6)
259
259
]
260
260
),
261
-
.target(
262
261
// swift-corelibs-foundation has a copy of XCTest's sources so:
263
262
// (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
264
263
// (2) we do not depend on a swift-corelibs-xctest Swift package, which depends on Foundation, which causes a circular dependency in swiftpm
265
264
// We believe Foundation is the only project that needs to take this rather drastic measure.
265
+
// 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