A GitHub Action to analyze test and/or coverage results. Foresight’s Test Kit action integrates with your Github Actions pipelines.
- It makes simple to see failed tests, visualize performance of your tests and see their logs. It is the fastest way to access a failed test results in your workflow runs.
- It correlates the changes to the codebase with the test coverage reports to determine how much of the changes are covered by the tests.
You need to integrate Test Kit action to your CI pipeline in order to use Test Monitoring and Change Impact Analysis features.
NOTE:
⚠️ You'll need to have a reasonably modern version ofnode
. This won't work with versions older than 9, for instance.
Foresight analyzes your test and coverage report artifacts.
Test framework | Report format |
---|---|
TESTNG | n/a* |
JUNIT | n/a* |
JEST | JUNIT |
PYTEST | JUNIT |
CYPRESS | JUNIT |
XUNIT2 | n/a* |
XUNIT2 | TRX |
GOLANG | JSON |
GOLANG | TEXT |
NOTE:
⚠️ You don't need to fill report format fields marked as n/a.
Coverage formats |
---|
JACOCO/XML |
COBERTURA/XML |
GOLANG |
LCOV/TXT |
To use the action, add the following step after your test execution step. Please fill the test_format
, test_framework
and coverage_format
fields by checking the supported options above.
You can get your api_key
after sign up to Foresight.
- name: Analyze Test and/or Coverage Results
uses: runforesight/foresight-test-kit-action@v1
if: success() || failure()
with:
api_key: <your_api_key_required>
test_format: <test_format_optional>
test_framework: <test_framework_optional>
test_path: <test_results_path_optional>
coverage_format: <coverage_format_optional>
coverage_path: <coverage_results_path_optional>
Option | Requirement | Description |
---|---|---|
api_key |
Optional | Foresight API Key. Foresight API key is required for private repositories but optional for public open-source repositories. |
github_token |
Optional | An alternative GitHub token, other than the default provided by GitHub Actions runner. |
test_framework |
Optional | Runtime test framework name(jest, pytest, junit, cypress etc.) |
test_format |
Optional | Runtime test format name(trx, junit etc.) |
test_path |
Optional | Test results directory/file path. |
coverage_format |
Optional | Runtime coverage format name(jacoco/xml, cobertura/xml, golang etc.) |
coverage_path |
Optional | Coverage results directory/file path. |
cli_version |
Optional | Installed Foresight cli version. Default is latest. |
working_directory |
Optional | Specify it if you change default working directory for run. |
disable_action |
Optional | Disable Foresight test kit action without removing from yml. |