Skip to content

Commit 955dc35

Browse files
committed
Merge remote-tracking branch 'remotes/3405691582/embed' into embed
2 parents 97dc280 + 32dc21f commit 955dc35

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
1515
with:
1616
linux_swift_versions: '["nightly-main", "nightly-6.2"]'
17-
linux_os_versions: '["amazonlinux2", "jammy"]'
1817
windows_swift_versions: '["nightly-main", "nightly-6.2"]'
1918
enable_macos_checks: true
2019
macos_exclude_xcode_versions: "[{\"xcode_version\": \"16.2\"}, {\"xcode_version\": \"16.3\"}]"
@@ -24,6 +23,6 @@ jobs:
2423
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
2524
with:
2625
license_header_check_project_name: "Swift"
27-
docs_check_enabled: false
26+
docs_check_container_image: "swift:6.2-noble"
2827
format_check_enabled: false
2928
api_breakage_check_enabled: false

Sources/Testing/Testing.docc/Documentation.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ their problems.
3535

3636
#### Related videos
3737

38-
@Links(visualStyle: compactGrid) {
39-
- <doc://com.apple.documentation/videos/play/wwdc2024/10179>
40-
- <doc://com.apple.documentation/videos/play/wwdc2024/10195>
41-
}
38+
- [Meet Swift Testing](https://developer.apple.com/videos/play/wwdc2024/10179)
39+
- [Go further with Swift Testing](https://developer.apple.com/videos/play/wwdc2024/10195)
4240

4341
## Topics
4442

Sources/Testing/Testing.docc/MigratingFromXCTest.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -556,9 +556,11 @@ test function with an instance of this trait type to control whether it runs:
556556
}
557557
}
558558

559-
<!-- TODO: document Test.cancel() and Test.Case.cancel() here
559+
<!-- TODO: document Test.cancel() and Test.Case.cancel() here, and update
560+
relevant links to use proper DocC symbol references.
561+
560562
If a test has already started running and you determine it cannot complete and
561-
should end early without failing, use ``Test/cancel(_:sourceLocation:)`` instead
563+
should end early without failing, use `Test/cancel(_:sourceLocation:)` instead
562564
of [`XCTSkip`](https://developer.apple.com/documentation/xctest/xctskip) to
563565
cancel the task associated with the current test:
564566
@@ -592,7 +594,7 @@ cancel the task associated with the current test:
592594
}
593595
594596
If the test is parameterized and you only want to cancel the current test case
595-
rather than the entire test, use ``Test/Case/cancel(_:sourceLocation:)``.
597+
rather than the entire test, use `Test/Case/cancel(_:sourceLocation:)`.
596598
-->
597599

598600
### Annotate known issues

0 commit comments

Comments
 (0)