Skip to content
Merged
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
6 changes: 6 additions & 0 deletions Sources/Commands/SwiftTestCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ struct TestCommandOptions: ParsableArguments {
help: "Number of tests to execute in parallel.")
var numberOfWorkers: Int?

/// Width of task group used by Swift Testing.
///
/// This argument is consumed by Swift Testing and is passed through verbatim by SwiftPM.
@Option(help: .hidden)
var experimentalMaximumParallelizationWidth: Int? = nil

/// List the tests and exit.
@Flag(name: [.customLong("list-tests"), .customShort("l")],
help: "Lists test methods in specifier format.")
Expand Down