Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[profile.default]
slow-timeout = { period = "10s", terminate-after = 3 }

[profile.default.junit]
path = "junit.xml"

# This test downloads bundles from the network, which can take a while.
# It is only run on CI, so we can afford to be more patient.
[[profile.default.overrides]]
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,11 @@ jobs:
FOREST_TEST_SKIP_PROOF_PARAM_CHECK: 1
# https://docs.github.com/en/actions/reference/runners/github-hosted-runners#standard-github-hosted-runners-for-public-repositories
CARGO_BUILD_JOBS: 3
- name: Upload Test Results to CodeCov
uses: codecov/codecov-action@v5
if: ${{ !cancelled() }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
report_type: "test_results"
files: target/nextest/default/junit.xml
fail_ci_if_error: false
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Loading