Skip to content

Commit

Permalink
[x] don't cancel test run on first failing test
Browse files Browse the repository at this point in the history
Followup to #10075 -- I changed the default for nextest to cancel the
test run on the first failing test. In CI we should keep going on,
though.

Closes: #10087
  • Loading branch information
sunshowers authored and bors-libra committed Dec 22, 2021
1 parent b0494bc commit 556025a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
retries = 2
# Show skipped tests in the CI output.
status-level = "skip"
# Show output for all tests as soon as they fail and at the end of the test run.
failure-output = "immediate-final"
# Do not cancel test run on the first failure.
fail-fast = false

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

0 comments on commit 556025a

Please sign in to comment.