File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
Sources/Testing/Testing.docc Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 14
14
uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
15
15
with :
16
16
linux_swift_versions : ' ["nightly-main", "nightly-6.2"]'
17
- linux_os_versions : ' ["amazonlinux2", "jammy"]'
18
17
windows_swift_versions : ' ["nightly-main", "nightly-6.2"]'
19
18
enable_macos_checks : true
20
19
macos_exclude_xcode_versions : " [{\" xcode_version\" : \" 16.2\" }, {\" xcode_version\" : \" 16.3\" }]"
24
23
uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
25
24
with :
26
25
license_header_check_project_name : " Swift"
27
- docs_check_enabled : false
26
+ docs_check_container_image : " swift:6.2-noble "
28
27
format_check_enabled : false
29
28
api_breakage_check_enabled : false
Original file line number Diff line number Diff line change @@ -35,10 +35,8 @@ their problems.
35
35
36
36
#### Related videos
37
37
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 )
42
40
43
41
## Topics
44
42
Original file line number Diff line number Diff line change @@ -556,9 +556,11 @@ test function with an instance of this trait type to control whether it runs:
556
556
}
557
557
}
558
558
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
+
560
562
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
562
564
of [`XCTSkip`](https://developer.apple.com/documentation/xctest/xctskip) to
563
565
cancel the task associated with the current test:
564
566
@@ -592,7 +594,7 @@ cancel the task associated with the current test:
592
594
}
593
595
594
596
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:)`.
596
598
-->
597
599
598
600
### Annotate known issues
You can’t perform that action at this time.
0 commit comments