Skip to content

CLI Reference

bugatti <COMMAND>
CommandDescription
testRun tests from a .test.toml file or discover all root test files
helpPrint help or the help of a subcommand
OptionDescription
-h, --helpPrint help
-V, --versionPrint version
bugatti test [OPTIONS] [PATH]
ArgumentDescription
[PATH]Path to a specific .test.toml file. If omitted, discovers and runs all root test files.
OptionDescription
--skip-cmd <name>Skip launching a configured command (can be repeated). The command won’t be started, tracked, or torn down. Readiness checks still run by default.
--skip-readiness <name>Skip readiness checks for the named command (can be repeated). Only meaningful with --skip-cmd.
--strict-warningsTreat WARN verdicts as failures (exit code 1 instead of 0). Overrides config.
--from-checkpoint <name>Resume from a named checkpoint. Auto-skips all steps up to and including the checkpoint step, restores state, then runs the rest.
-v, --verboseEnable verbose output: show full prompts, provider command lines, and timing details.
-h, --helpPrint help.
Terminal window
# Run a specific test file
bugatti test login.test.toml
# Discover and run all tests
bugatti test
# Skip the install command (it already ran)
bugatti test --skip-cmd install
# Resume from a checkpoint
bugatti test ftue.test.toml --from-checkpoint after-billing
# Treat warnings as failures
bugatti test --strict-warnings
# Verbose output
bugatti test -v login.test.toml