-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix iOS 15, 14 tests using wrong version of
swift-snapshot-testing
…
…and API tests (#4394)
- Loading branch information
Showing
3 changed files
with
10 additions
and
3 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
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]:pointfreeco/swift-snapshot-testing.git", .upToNextMinor(from: "1.12.0")) | ||
] | ||
if shouldIncludeDocCPlugin { | ||
// Versions 1.4.0 and 1.4.1 are failing to compile, so we are pinning it to 1.3.0 for now | ||
|
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]:pointfreeco/swift-snapshot-testing.git", .upToNextMinor(from: "1.12.0")) | ||
] | ||
if shouldIncludeDocCPlugin { | ||
// Versions 1.4.0 and 1.4.1 are failing to compile, so we are pinning it to 1.3.0 for now | ||
|
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