-
Notifications
You must be signed in to change notification settings - Fork 417
Disable record on regular snapshot tests to prevent from passing after retry #6303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,10 +47,9 @@ let shouldIncludeDocCPlugin = environmentVariables["INCLUDE_DOCC_PLUGIN"] == "tr | |
|
|
||
| var dependencies: [Package.Dependency] = [ | ||
| .package(url: "https://github.com/quick/nimble", exact: "13.7.1"), | ||
| // SST requires iOS 13 starting from version 1.13.0 | ||
| .package( | ||
| url: "https://github.com/pointfreeco/swift-snapshot-testing", | ||
| revision: "26ed3a2b4a2df47917ca9b790a57f91285b923fb" | ||
| exact: "1.18.9" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice 🤩 |
||
| ) | ||
| ] | ||
| if shouldIncludeDocCPlugin { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,10 +11,11 @@ let shouldIncludeDocCPlugin = environmentVariables["INCLUDE_DOCC_PLUGIN"] == "tr | |
|
|
||
| var dependencies: [Package.Dependency] = [ | ||
| .package(url: "https://github.com/quick/nimble", exact: "13.7.1"), | ||
| // SST requires iOS 13 starting from version 1.13.0 | ||
| // Uses SST 1.17.7, the last version with swift-tools-version 5.7, which includes the | ||
| // `withSnapshotTesting` API needed to prevent auto-recording in CI. | ||
|
Comment on lines
+14
to
+15
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🫶 |
||
| .package( | ||
| url: "https://github.com/pointfreeco/swift-snapshot-testing", | ||
| revision: "26ed3a2b4a2df47917ca9b790a57f91285b923fb" | ||
| exact: "1.17.7" | ||
| ) | ||
| ] | ||
| if shouldIncludeDocCPlugin { | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.