The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::Yath::Command::persist

DESCRIPTION

SYNOPSIS

COMMAND LINE USAGE

    $ yath run [options] [--] [test files/dirs] [::] [arguments to test scripts]

Help

--show-opts

Exit after showing what yath thinks your options mean

-h
--help

Exit after showing this help message

-h
--help

Exit after showing this help message

-V
--version

Show version information

Harness Options

--id ID
--run_id ID

Set a specific run-id

(Default: current timestamp)

--no-long

Do not run tests with the HARNESS-CAT-LONG header

-m Module
--load Module
--load-module Mod

Load a module in each test (after fork)

this option may be given multiple times

-M Module
--loadim Module
--load-import Mod

Load and import module in each test (after fork)

this option may be given multiple times

-X foo
--exclude-pattern bar

Exclude files that match

May be specified multiple times

matched using `m/$PATTERN/`

-x t/bad.t
--exclude-file t/bad.t

Exclude a file from testing

May be specified multiple times

--et SECONDS
--event_timeout #

Kill test if no events received in timeout period

(Default: 60 seconds)

This is used to prevent the harness for waiting forever for a hung test. Add the "# HARNESS-NO-TIMEOUT" comment to the top of a test file to disable timeouts on a per-test basis.

--pet SECONDS
--post-exit-timeout #

Stop waiting post-exit after the timeout period

(Default: 15 seconds)

Some tests fork and allow the parent to exit before writing all their output. If Test2::Harness detects an incomplete plan after the test exists it will monitor for more events until the timeout period. Add the "# HARNESS-NO-TIMEOUT" comment to the top of a test file to disable timeouts on a per-test basis.

Job Options

--blib
--no-blib

(Default: on) Include 'blib/lib' and 'blib/arch'

Do not include 'blib/lib' and 'blib/arch'

--input-file file

Use the specified file as standard input to ALL tests

--lib
--no-lib

(Default: on) Include 'lib' in your module path

Do not include 'lib'

--slack "#CHANNEL"
--slack "@USER"

Send results to a slack channel

Send results to a slack user

--slack-fail "#CHANNEL"
--slack-fail "@USER"

Send failing results to a slack channel

Send failing results to a slack user

--tlib

(Default: off) Include 't/lib' in your module path

-E VAR=value
--env-var VAR=val

Set an environment variable for each test

(but not the harness)

-i "string"

This input string will be used as standard input for ALL tests

See also --input-file

-I path/lib
--include lib/

Add a directory to your include paths

This can be used multiple times

--cover

use Devel::Cover to calculate test coverage

This is essentially the same as combining: '--no-fork', and '-MDevel::Cover=-silent,1,+ignore,^t/,+ignore,^t2/,+ignore,^xt,+ignore,^test.pl' Devel::Cover and preload/fork do not work well together.

--default-at-search xt

Specify the default file/dir search when 'AUTHOR_TESTING' is set. Defaults to './xt'. The default AT search is only used if no files were specified at the command line

--default-search t

Specify the default file/dir search. defaults to './t', './t2', and 'test.pl'. The default search is only used if no files were specified at the command line

--email foo@example.com

Email the test results (and any log file) to the specified email address(es)

--email-from foo@example.com

If any email is sent, this is who it will be from

--email-owner

Email the owner of broken tests files upon failure. Add `# HARNESS-META-OWNER foo@example.com` to the top of a test file to give it an owner

--fork
--no-fork

(Default: on) fork to start tests

Do not fork to start tests

Test2::Harness normally forks to start a test. Forking can break some select tests, this option will allow such tests to pass. This is not compatible with the "preload" option. This is also significantly slower. You can also add the "# HARNESS-NO-PRELOAD" comment to the top of the test file to enable this on a per-test basis.

--no-batch-owner-notices

Usually owner failures are sent as a single batch at the end of testing. Toggle this to send failures as they happen.

--slack-log
--no-slack-log

Off by default, log file will be attached if available

Attach the event log to any slack notifications.

--slack-notify
--no-slack-notify

On by default if --slack-url is specified

Send slack notifications to the slack channels/users listed in test meta-data when tests fail.

--slack-url "URL"

Specify an API endpoint for slack webhook integrations

This should be your slack webhook url.

--stream
--no-stream
--TAP
--tap

Use 'stream' instead of TAP (Default: use stream)

Do not use stream

Use TAP

The TAP format is lossy and clunky. Test2::Harness normally uses a newer streaming format to receive test results. There are old/legacy tests where this causes problems, in which case setting --TAP or --no-stream can help.

--unsafe-inc
--no-unsafe-inc

(Default: On) put '.' in @INC

Do not put '.' in @INC

perl is removing '.' from @INC as a security concern. This option keeps things from breaking for now.

-A
--author-testing
--no-author-testing

This will set the AUTHOR_TESTING environment to true

Many cpan modules have tests that are only run if the AUTHOR_TESTING environment variable is set. This will cause those tests to run.

-k
--keep-dir

Do not delete the work directory when done

This is useful if you want to inspect the work directory after the harness is done. The work directory path will be printed at the end.

-S SW
-S SW=val
--switch SW=val

Pass the specified switch to perl for each test

This is not compatible with preload.

-T
--times

Monitor timing data for each test file

This tells perl to load Test2::Plugin::Times before starting each test.

Logging Options

-B
--bz2
--bzip2-log

Use bzip2 compression when writing the log

This option implies -L

.bz2 prefix is added to log file name for you

-F file.jsonl
--log-file FILE

Specify the name of the log file

This option implies -L

(Default: event_log-RUN_ID.jsonl)

-G
--gz
--gzip-log

Use gzip compression when writing the log

This option implies -L

.gz prefix is added to log file name for you

-L
--log

Turn on logging

Display Options

--color
--no-color

Turn color on (Default: on)

Turn color off

--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)

-q
--quiet

Be very quiet

-v
-vv
--verbose

Turn on verbose mode.

Specify multiple times to be more verbose.

--formatter Mod
--formatter +Mod

Specify the formatter to use

(Default: "Test2")

Only useful when the renderer is set to "Formatter". This specified the Test2::Formatter::XXX that will be used to render the test output.

--qvf

Quiet, but verbose on failure

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)

This is only used when the renderer is set to "Formatter"

-r +Module
-r Postfix
--renderer ...

Specify an alternate renderer

(Default: "Formatter")

Use "+" to give a fully qualified module name. Without "+" "Test2::Harness::Renderer::" will be prepended to your argument.

Plugins

-pPlugin
-p+My::Plugin
--plugin Plugin

Load a plugin

can be specified multiple times

--no-plugins

cancel any plugins listed until now

This can be used to negate plugins specified in .yath.rc or similar

SOURCE

The source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.

MAINTAINERS

Chad Granum <exodist@cpan.org>

AUTHORS

Chad Granum <exodist@cpan.org>

COPYRIGHT

Copyright 2017 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/