Skip to content

Commit

Permalink
CI(create-test-report): fix missing benchmark results in Allure report (
Browse files Browse the repository at this point in the history
#8540)

## Problem

In #8241 I've accidentally
removed `create-test-report` dependency on `benchmarks` job

## Summary of changes
- Run `create-test-report` after `benchmarks` job
  • Loading branch information
bayandin authored Jul 31, 2024
1 parent 939d50a commit 3350dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ jobs:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}

create-test-report:
needs: [ check-permissions, build-and-test-locally, coverage-report, build-build-tools-image ]
needs: [ check-permissions, build-and-test-locally, coverage-report, build-build-tools-image, benchmarks ]
if: ${{ !cancelled() && contains(fromJSON('["skipped", "success"]'), needs.check-permissions.result) }}
outputs:
report-url: ${{ steps.create-allure-report.outputs.report-url }}
Expand Down

1 comment on commit 3350dae

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2187 tests run: 2108 passed, 0 failed, 79 skipped (full report)


Code coverage* (full report)

  • functions: 32.7% (7077 of 21625 functions)
  • lines: 50.3% (56770 of 112953 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
3350dae at 2024-07-31T20:44:55.513Z :recycle:

Please sign in to comment.