Skip to content

Document missing failOn* configuration options. #247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,15 @@ Possible values: ``true`` or ``false`` (default: ``false``)

This attribute configures whether the test suite execution should be stopped after the first test finished with a status "error", "failure", "risky" or "warning".

.. _appendixes.configuration.phpunit.failOnIncomplete:

The ``failOnIncomplete`` Attribute
-----------------------------

Possible values: ``true`` or ``false`` (default: ``false``)

This attribute configures whether the PHPUnit test runner should exit with a shell exit code that indicates failure when all tests are successful but there are tests that were marked as incomplete.

.. _appendixes.configuration.phpunit.failOnRisky:

The ``failOnRisky`` Attribute
Expand All @@ -222,6 +231,15 @@ Possible values: ``true`` or ``false`` (default: ``false``)

This attribute configures whether the PHPUnit test runner should exit with a shell exit code that indicates failure when all tests are successful but there are tests that were marked as risky.

.. _appendixes.configuration.phpunit.failOnSkipped:

The ``failOnSkipped`` Attribute
-----------------------------

Possible values: ``true`` or ``false`` (default: ``false``)

This attribute configures whether the PHPUnit test runner should exit with a shell exit code that indicates failure when all tests are successful but there are tests that were marked as skipped.

.. _appendixes.configuration.phpunit.failOnWarning:

The ``failOnWarning`` Attribute
Expand Down