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 d674b2c commit 392dde8Copy full SHA for 392dde8
rust/.config/nextest.toml
@@ -47,3 +47,14 @@ store-success-output = true
47
# Note that if a description can be extracted from the output, it is always stored in the
48
# <description> element.
49
store-failure-output = true
50
+
51
+[test-groups]
52
+serial-integration = { max-threads = 1 }
53
54
+[[profile.default.overrides]]
55
+filter = 'test(/^serial::/)'
56
+test-group = 'serial-integration'
57
58
+[[profile.ci.overrides]]
59
60
+test-group = "serial-integration"
rust/deny.toml
@@ -16,7 +16,10 @@ targets = [
16
17
[advisories]
18
version = 2
19
-ignore = []
+ignore = [
20
+ "RUSTSEC-2025-0067",
21
+ "RUSTSEC-2025-0068",
22
+]
23
24
[bans]
25
multiple-versions = "warn"
0 commit comments