-
-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f1991e
commit 411947a
Showing
3 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
Sources/XcodeProj/Scheme/XCScheme+TestParallelization.swift
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import Foundation | ||
|
||
public extension XCScheme { | ||
/// With the introduction of Swift Testing and Xcode 16, you can now choose to run your tests in parallel across either the full suite of tests in a target with `.all`, just those created under Swift Testing with `.swiftTestingOnly`, or run them serially with the `.none` option. | ||
enum TestParallelization: String { | ||
case all | ||
case swiftTestingOnly | ||
case none | ||
} | ||
/// With the introduction of Swift Testing and Xcode 16, you can now choose to run your tests in parallel across either the full suite of tests in a target with `.all`, just those created under Swift Testing with `.swiftTestingOnly`, or run them serially with the `.none` option. | ||
enum TestParallelization: String { | ||
case all | ||
case swiftTestingOnly | ||
case none | ||
} | ||
} |
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
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