Skip to content

Commit 54b34b0

Browse files
committed
Add nextest config
1 parent 9589fdb commit 54b34b0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.config/nextest.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[test-groups]
2+
run-in-isolation = { max-threads = 32 }
3+
# these are tests that must not run with other tests concurrently. All tests in
4+
# this group can take up at most 32 threads among them, but each one requiring
5+
# 16 threads also. The effect should be that tests run isolated.
6+
7+
[[profile.ci.overrides]]
8+
filter = 'test(::run_in_isolation::)'
9+
test-group = 'run-in-isolation'
10+
threads-required = 32

0 commit comments

Comments
 (0)