-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Xcode 15.3
: fix warnings on Integration Tests (#3603)
Follow up to #3599 and #3600. These `@MainActor` annotations don't work anymore because of this: > Main actor-isolated class '...' has different actor isolation from nonisolated superclass 'TestCase'; this is an error in Swift 6 They were necessary with an older version of Xcode (likely 13.x), but not anymore. --------- Co-authored-by: Mark Villacampa <[email protected]>
- Loading branch information
1 parent
da11a79
commit 0bb44cc
Showing
14 changed files
with
154 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ let shouldIncludeDocCPlugin = environmentVariables["INCLUDE_DOCC_PLUGIN"] == "tr | |
var dependencies: [Package.Dependency] = [ | ||
.package(url: "[email protected]:Quick/Nimble.git", from: "10.0.0"), | ||
// SST requires iOS 13 starting from version 1.13.0 | ||
.package(url: "[email protected]:pointfreeco/swift-snapshot-testing.git", .upToNextMinor(from: "1.12.0")) | ||
.package(url: "[email protected]:revenuecat/swift-snapshot-testing.git", branch: "1.12.0-fix-test-observer") | ||
] | ||
if shouldIncludeDocCPlugin { | ||
dependencies.append(.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ let shouldIncludeDocCPlugin = environmentVariables["INCLUDE_DOCC_PLUGIN"] == "tr | |
|
||
var dependencies: [Package.Dependency] = [ | ||
.package(url: "[email protected]:Quick/Nimble.git", from: "10.0.0"), | ||
.package(url: "[email protected]:pointfreeco/swift-snapshot-testing.git", from: "1.11.0") | ||
.package(url: "[email protected]:revenuecat/swift-snapshot-testing.git", branch: "1.12.0-fix-test-observer") | ||
] | ||
if shouldIncludeDocCPlugin { | ||
dependencies.append(.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ let shouldIncludeDocCPlugin = environmentVariables["INCLUDE_DOCC_PLUGIN"] == "tr | |
|
||
var dependencies: [Package.Dependency] = [ | ||
.package(url: "[email protected]:Quick/Nimble.git", from: "10.0.0"), | ||
.package(url: "[email protected]:pointfreeco/swift-snapshot-testing.git", from: "1.11.0") | ||
.package(url: "[email protected]:revenuecat/swift-snapshot-testing.git", branch: "1.12.0-fix-test-observer") | ||
] | ||
if shouldIncludeDocCPlugin { | ||
dependencies.append(.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")) | ||
|
Oops, something went wrong.