NAME
App::Yath::Command::replay - Replay a test run from an event log
DESCRIPTION
This yath command will re-run the harness against an event log produced by a previous test run. The only required argument is the path to the log file, which maybe compressed. Any extra arguments are assumed to be job id's. If you list any jobs, only listed jobs will be processed.
This command accepts all the same renderer/formatter options that the 'test' command accepts.
USAGE
$ yath [YATH OPTIONS] replay [COMMAND OPTIONS]
YATH OPTIONS
Developer
- --dev-lib
- --dev-lib=lib
- -D
- -D=lib
- -Dlib
- --no-dev-lib
-
Add paths to @INC before loading ANYTHING. This is what you use if you are developing yath or yath plugins to make sure the yath script finds the local code instead of the installed versions of the same code. You can provide an argument (-Dfoo) to provide a custom path, or you can just use -D without and arg to add lib, blib/lib and blib/arch.
Can be specified multiple times
Environment
- --persist-dir ARG
- --persist-dir=ARG
- --no-persist-dir
-
Where to find persistence files.
- --persist-file ARG
- --persist-file=ARG
- --pfile ARG
- --pfile=ARG
- --no-persist-file
-
Where to find the persistence file. The default is /{system-tempdir}/project-yath-persist.json. If no project is specified then it will fall back to the current directory. If the current directory is not writable it will default to /tmp/yath-persist.json which limits you to one persistent runner on your system.
- --project ARG
- --project=ARG
- --project-name ARG
- --project-name=ARG
- --no-project
-
This lets you provide a label for your current project/codebase. This is best used in a .yath.rc file. This is necessary for a persistent runner.
Help and Debugging
- --show-opts
- --no-show-opts
-
Exit after showing what yath thinks your options mean
- --version
- -V
- --no-version
-
Exit after showing a helpful usage message
Plugins
- --no-scan-plugins
- --no-no-scan-plugins
-
Normally yath scans for and loads all App::Yath::Plugin::* modules in order to bring in command-line options they may provide. This flag will disable that. This is useful if you have a naughty plugin that it loading other modules when it should not.
- --plugins PLUGIN
- --plugins +App::Yath::Plugin::PLUGIN
- --plugins PLUGIN=arg1,arg2,...
- --plugin PLUGIN
- --plugin +App::Yath::Plugin::PLUGIN
- --plugin PLUGIN=arg1,arg2,...
- -pPLUGIN
- --no-plugins
-
Load a yath plugin.
Can be specified multiple times
COMMAND OPTIONS
Display Options
- --color
- --no-color
-
Turn color on, default is true if STDOUT is a TTY.
- --no-wrap
- --no-no-wrap
-
Do not do fancy text-wrapping, let the terminal handle it
- --progress
- --no-progress
-
Toggle progress indicators. On by default if STDOUT is a TTY. You can use --no-progress to disable the 'events seen' counter and buffered event pre-display
- --quiet
- -q
- --no-quiet
-
Be very quiet.
Can be specified multiple times
- --renderers +My::Renderer
- --renderers Renderer=arg1,arg2,...
- --renderer +My::Renderer
- --renderer Renderer=arg1,arg2,...
- --no-renderers
-
Specify renderers, (Default: "Formatter=Test2"). Use "+" to give a fully qualified module name. Without "+" "Test2::Harness::Renderer::" will be prepended to your argument.
Can be specified multiple times. If the same key is listed multiple times the value lists will be appended together.
- --show-times
- -T
- --no-show-times
-
Show the timing data for each job
- --term-width 80
- --term-width 200
- --term-size 80
- --term-size 200
- --no-term-width
-
Alternative to setting $TABLE_TERM_SIZE. Setting this will override the terminal width detection to the number of characters specified.
- --verbose
- -v
- --no-verbose
-
Be more verbose
Can be specified multiple times
Formatter Options
- --formatter ARG
- --formatter=ARG
- --no-formatter
-
NO DESCRIPTION - FIX ME
- --qvf
- --no-qvf
-
[Q]uiet, but [V]erbose on [F]ailure. Hide all output from tests when they pass, except to say they passed. If a test fails then ALL output from the test is verbosely output.
- --show-job-end
- --no-show-job-end
-
Show output when a job ends. (Default: on)
- --show-job-info
- --no-show-job-info
-
Show the job configuration when a job starts. (Default: off, unless -vv)
- --show-job-launch
- --no-show-job-launch
-
Show output for the start of a job. (Default: off unless -v)
- --show-run-info
- --no-show-run-info
-
Show the run configuration when a run starts. (Default: off, unless -vv)
Git Options
- --git-change-base master
- --git-change-base HEAD^
- --git-change-base df22abe4
- --no-git-change-base
-
Find files changed by all commits in the current branch from most recent stopping when a commit is found that is also present in the history of the branch/commit specified as the change base.
Help and Debugging
- --dummy
- -d
- --no-dummy
-
Dummy run, do not actually execute anything
Can also be set with the following environment variables:
T2_HARNESS_DUMMY
- --help
- -h
- --no-help
-
exit after showing help information
- --keep-dirs
- --keep_dir
- -k
- --no-keep-dirs
-
Do not delete directories when done. This is useful if you want to inspect the directories used for various commands.
YathUI Options
- --yathui-api-key ARG
- --yathui-api-key=ARG
- --no-yathui-api-key
-
Yath-UI API key. This is not necessary if your Yath-UI instance is set to single-user
- --yathui-grace
- --no-yathui-grace
-
If yath cannot connect to yath-ui it normally throws an error, use this to make it fail gracefully. You get a warning, but things keep going.
- --yathui-long-duration 10
- --no-yathui-long-duration
-
Minimum duration length (seconds) before a test goes from MEDIUM to LONG
- --yathui-medium-duration 5
- --no-yathui-medium-duration
-
Minimum duration length (seconds) before a test goes from SHORT to MEDIUM
- --yathui-mode summary
- --yathui-mode qvf
- --yathui-mode qvfd
- --yathui-mode complete
- --no-yathui-mode
-
Set the upload mode (default 'qvfd')
- --yathui-project ARG
- --yathui-project=ARG
- --no-yathui-project
-
The Yath-UI project for your test results
- --yathui-retry
- --no-yathui-retry
-
How many times to try an operation before giving up
Can be specified multiple times
- --yathui-url http://my-yath-ui.com/...
- --uri http://my-yath-ui.com/...
- --no-yathui-url
-
Yath-UI url
SOURCE
The source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.
MAINTAINERS
AUTHORS
COPYRIGHT
Copyright 2020 Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/