Skip to content

Commit b8a3c86

Browse files
Alex Holmbergclaude
authored andcommitted
fix(ci): ignore flaky integration test and fix doctests
- Ignore test_vulnerability_checking_with_mixed_languages which depends on external tools (npm audit, pip-audit, cargo audit, go) - Fix doc comment code blocks with Unicode characters to use ```text 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c6652ec commit b8a3c86

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/agent/ui/tool_display.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ pub fn print_tool_group_header(count: usize) {
218218
// ============================================================================
219219

220220
/// Forge-style tool display that shows:
221-
/// ```
221+
/// ```text
222222
/// ● tool_name(arg1=value1, arg2=value2)
223223
/// └ Running...
224224
/// ```
@@ -271,7 +271,7 @@ impl ForgeToolDisplay {
271271
}
272272

273273
/// Print tool start in forge style
274-
/// ```
274+
/// ```text
275275
/// ● tool_name(args)
276276
/// └ Running...
277277
/// ```

tests/integration_bun_audit.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ async fn test_multi_runtime_project_priority() {
170170
}
171171

172172
#[tokio::test]
173+
#[ignore] // Requires external tools (npm audit, pip-audit, cargo audit, go) to be installed
173174
async fn test_vulnerability_checking_with_mixed_languages() {
174175
let temp_dir = TempDir::new().unwrap();
175176
let project_path = temp_dir.path();

0 commit comments

Comments
 (0)