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 8911df5 commit 40582e5Copy full SHA for 40582e5
tests/integration/helpers.rs
@@ -61,6 +61,24 @@ use_all_features = true
61
"#,
62
)?;
63
64
+ // Create .config/nextest.toml with commit profile for CI compatibility
65
+ std::fs::write(
66
+ path.join(".config/nextest.toml"),
67
+ r#"[profile.default]
68
+status-level = "pass"
69
+success-output = "never"
70
+failure-output = "immediate"
71
+fail-fast = false
72
+
73
+[profile.commit]
74
+status-level = "fail"
75
76
+failure-output = "immediate-final"
77
78
+retries = { backoff = "exponential", count = 2, delay = "1s", jitter = true }
79
+"#,
80
+ )?;
81
82
git(&path, &["add", "."])?;
83
git(&path, &["commit", "-m", "Initial workspace setup"])?;
84
0 commit comments