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:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user