Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Sources/Testing/Running/Configuration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,10 @@ public struct Configuration: Sendable {
// MARK: - Test selection

/// The test filter to which tests should be filtered when run.
///
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please ensure text is formatted according to our style guide and so that it is correctly rendered by the DocC compiler.

/// When the value of this property is '.unfiltered', all tests are included in the test run. To restrict which tests are run, assign an instance of ''TestFilter'' constructed with specific test IDs, tags, or patterns.
///
/// Note: This property filters at the ''Test'' level. To filter individual test cases within a parameterized test, use ''testCaseFilter'' instead.
public var testFilter: TestFilter = .unfiltered

// MARK: - Test case selection
Expand Down