mirror of
https://github.com/keycloak/keycloak.git
synced 2026-04-09 11:09:22 -04:00
14 lines
No EOL
692 B
Markdown
14 lines
No EOL
692 B
Markdown
# GitHub Actions Job Summary
|
|
|
|
The test framework has built-in support for creating GitHub Actions job summaries. It will report:
|
|
|
|
* Failed tests
|
|
* Slow tests
|
|
|
|
The report is enabled by default when tests are executed on GitHub Actions. If you don't want this report it can be
|
|
disabled with the `KC_TEST_GITHUB_ENABLED` environment variable.
|
|
|
|
Slow test detection can be configured separately by setting the threshold for slow test classes and test methods.
|
|
By default, test classes that take longer than 120 seconds and test methods that take longer than 30 seconds are
|
|
reported. This can be configured with `KC_TEST_GITHUB_SLOW_CLASS` and `KC_TEST_GITHUB_SLOW_METHOD` environment
|
|
variables. |