Struct cucumber::runner::basic::Cli

source ·
pub struct Cli {
    pub concurrency: Option<usize>,
    pub fail_fast: bool,
    pub retry: Option<usize>,
    pub retry_after: Option<Duration>,
    pub retry_tag_filter: Option<TagOperation>,
}
Expand description

CLI options of a Basic Runner.

Fields§

§concurrency: Option<usize>

Number of scenarios to run concurrently. If not specified, uses the value configured in tests runner, or 64 by default.

§fail_fast: bool

Run tests until the first failure.

§retry: Option<usize>

Number of times a scenario will be retried in case of a failure.

§retry_after: Option<Duration>

Delay between each scenario retry attempt.

Duration is represented in a human-readable format like 12min5s. Supported suffixes:

  • nsec, ns — nanoseconds.
  • usec, us — microseconds.
  • msec, ms — milliseconds.
  • seconds, second, sec, s - seconds.
  • minutes, minute, min, m - minutes.
§retry_tag_filter: Option<TagOperation>

Tag expression to filter retried scenarios.

Trait Implementations§

Report the ArgGroup::id for this set of arguments
Append to Command so it can instantiate Self. Read more
Append to Command so it can update self. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Assign values from ArgMatches to self.
Assign values from ArgMatches to self.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Asserts this Writer being Normalized. Read more
Wraps this Writer into a Normalized version. Read more
Wraps this Writer to print a summary at the end of an output. Read more
Wraps this Writer to fail on Skipped Steps if their Scenario isn’t marked with @allow.skipped tag. Read more
Wraps this Writer to fail on Skipped Steps if the given with predicate returns true. Read more
Wraps this Writer to re-output Skipped Steps at the end of an output.
Wraps this Writer to re-output Failed Steps or Parser errors at the end of an output.
Wraps this Writer to re-output filtered events at the end of an output.
Attaches the provided other Writer to the current one for passing events to both of them simultaneously.
Wraps this Writer into a discard::Arbitrary one, providing a no-op ArbitraryWriter implementation. Read more
Wraps this Writer into a discard::Stats one, providing a no-op StatsWriter implementation returning only 0. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.