fix: Add interactive=False to test_fetch_integration

Fixes additional test failure in test_github_fetcher.py with the same
stdin reading issue.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-01-17 22:06:25 +03:00
parent 02be4c53f6
commit 8c1622e189

View File

@@ -417,7 +417,7 @@ class TestIntegration:
(repo_dir / "src" / "main.py").write_text("print('hello')")
(repo_dir / "README.md").write_text("# README")
fetcher = GitHubThreeStreamFetcher("https://github.com/test/repo")
fetcher = GitHubThreeStreamFetcher("https://github.com/test/repo", interactive=False)
# Mock clone to use our tmp_path
with patch.object(fetcher, "clone_repo", return_value=repo_dir):