mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Fix CLI integration test timeout by skipping upgrade check
The dry_run_writes_jsonl_and_live_json test was timing out at 4s because the arc() helper didn't pass --no-upgrade-check, causing every test run to await a background GitHub API call before process exit. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
668b70842e
commit
b536564d5e
1 changed files with 3 additions and 1 deletions
|
|
@ -3,7 +3,9 @@ use predicates::prelude::*;
|
|||
|
||||
#[allow(deprecated)]
|
||||
fn arc() -> Command {
|
||||
Command::cargo_bin("fabro").unwrap()
|
||||
let mut cmd = Command::cargo_bin("fabro").unwrap();
|
||||
cmd.arg("--no-upgrade-check");
|
||||
cmd
|
||||
}
|
||||
|
||||
// == LLM: prompt ==============================================================
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue