-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): notify discord of successfull flaky runs (#2623)
## Description In pro of being a bit more positive, this PR makes the notify action tell us when there were no ci failures as well. ## Breaking Changes n/a ## Notes & open questions Also increases the required threads for the isolation tests ## Change checklist - [x] Self-review. - [ ] Documentation updates following the [style guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text), if relevant. - [ ] Tests if relevant. - [ ] All breaking changes documented.
- Loading branch information
1 parent
74a527b
commit 94cee34
Showing
2 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[test-groups] | ||
run-in-isolation = { max-threads = 16 } | ||
run-in-isolation = { max-threads = 32 } | ||
# these are tests that must not run with other tests concurrently. All tests in | ||
# this group can take up at most 16 threads among them, but each one requiring | ||
# this group can take up at most 32 threads among them, but each one requiring | ||
# 16 threads also. The effect should be that tests run isolated. | ||
|
||
[[profile.ci.overrides]] | ||
filter = 'test(::run_in_isolation::)' | ||
test-group = 'run-in-isolation' | ||
threads-required = 16 | ||
threads-required = 32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters