#configuration #runner #toml-config #metadata #run #automated #default

app example-runner-cli

Example runner providing a way to run examples in a automated way

2 releases

0.1.1 Feb 10, 2024
0.1.0 Feb 10, 2024

#106 in Configuration

Download history 42/week @ 2024-02-05 36/week @ 2024-02-12 78/week @ 2024-02-19 205/week @ 2024-02-26 44/week @ 2024-03-04 32/week @ 2024-03-11 59/week @ 2024-03-18 5/week @ 2024-03-25 45/week @ 2024-04-01 46/week @ 2024-04-08 127/week @ 2024-04-15

232 downloads per month

MIT/Apache

30KB
669 lines

WARNING: This crate is still in development. Not all of the below mentioned configuration options do actually work. Currently examples are always run, regardless of the specified type!

Example Runner

Example Configuration

Every example gets a runner configuration in the cargo configuration of the example, so e.g.

# Cargo.toml

[[example]]
name = "example_name"

[package.metadata.example_runner.examples]
example_name = "ignore"

There are two ways to specify the configuration, first of all as a string like above or as a more exhaustive object configuration like so:

# Cargo.toml

[[package.metadata.example_runner.examples.example_name]]
type = "explicit"
template = "some_template"
expected_exit_status = "failure"
arguments = [
  "--some-cli-arg"
]

Alternatively you can also keep the default configurations from the workspace / package and only extend them:

# Cargo.toml

[package.metadata.example_runner.examples.example_name]
extend_configurations = true

[[package.metadata.example_runner.examples.example_name.configurations]]
type = "explicit"
template = "some_template"
expected_exit_status = "failure"
arguments = [
  "--some-cli-arg"
]

Config options

  • type: One of explicit|no_run|ignore. Explicit creates a new configuration (default), no_run only compiles the example and ignore completely ignores it.
  • template: Some template to use. Template resolution occurs in the following order: crate, then workspace.
  • arguments: Arguments to pass to the test while running it.
  • expected_exit_status: Either one of success|failure or some specific i32 status code: Fails if the example doesn't exit with this status code. Defaults to success.

Runner Configuration

Runner configuration can be specified in a workspace using workspace.example_runner, or in a package using just example_runner as follows:

# Cargo.toml for the workspace

# A list of configurations to run for every example by default
[[workspace.metadata.example_runner.default]]
type = "ignore"

# templates to be used within configurations
[workspace.metadata.example_runner.template.some_template]
arguments = [
  "--some-other-cli-arg"
]
# Cargo.toml for the package

[package.metadata.example_runner]
# This is optional and if set adds to workspace configurations instead of replacing them 
extend_workspace_defaults = true

[[package.metadata.example_runner.default]]
type = "ignore"

# templates to be used within configurations - if same name as in workspace it overrides them,
# else all workspace templates are still available.
[package.metadata.example_runner.template.some_template]
arguments = [
  "--some-other-cli-arg"
]

Dependencies

~8–17MB
~196K SLoC