Skip to content

Commit

Permalink
Merge pull request #955 from viccuad/main
Browse files Browse the repository at this point in the history
ci: Continue on error for coverage job
  • Loading branch information
flavio authored Oct 23, 2024
2 parents 3268324 + bf46cd1 commit 493cf14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
continue-on-error: true # https://github.com/xd009642/tarpaulin/issues/1639
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
Expand All @@ -92,7 +93,6 @@ jobs:
directory: coverage/unit-tests
flags: unit-tests
verbose: true
- uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0

- name: Generate e2e-tests coverage
run: make coverage-e2e-tests
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ coverage-unit-tests:

.PHONY: coverage-e2e-tests
coverage-e2e-tests:
cargo tarpaulin --verbose --skip-clean \
cargo tarpaulin --verbose --skip-clean --engine=llvm \
--all-features --implicit-test-threads --test e2e \
--out xml --out html --output-dir coverage/e2e-tests

Expand Down

0 comments on commit 493cf14

Please sign in to comment.