Skip to content

Commit

Permalink
chore(IDX): exclude problematic target (#2125)
Browse files Browse the repository at this point in the history
Excluding problematic target (see
#2103) to not degrade success rate of
hourly workflow.
  • Loading branch information
marko-k0 authored Oct 18, 2024
1 parent a25a338 commit 8ecf1f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/scripts/bazel-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ bazel query --universe_scope=//... \
"kind(test, //rs/...) except kind(test, allrdeps(attr('tags', 'canister', //rs/...)))" \
>cov_targets.txt

# exclude the target blelow because of flaky builds - https://github.com/dfinity/ic/pull/2103
sed -i '/minter:principal_to_bytes_test/d' cov_targets.txt
# shellcheck disable=SC2046,SC2086
bazel --output_base=/var/tmp/bazel-output/ coverage --config=ci --combined_report=lcov \
--test_timeout=3000 --combined_report=lcov $(<cov_targets.txt) || true
Expand Down

0 comments on commit 8ecf1f4

Please sign in to comment.