keycloak/test-framework/docs/GITHUB.md
Stian Thorgersen 9350e704c8
Follow-up update to test framework docs (#46176)
Closes #46073

Signed-off-by: stianst <stianst@gmail.com>
2026-02-11 11:12:35 +01:00

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.