We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17bd71a commit a00ff9bCopy full SHA for a00ff9b
.config/nextest.toml
@@ -0,0 +1,13 @@
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
11
12
+[profile.default]
13
+slow-timeout = { period = "20s", terminate-after = 3 }
0 commit comments