From 8c1622e1892e380ecf45037257ba6d0105d3a342 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sat, 17 Jan 2026 22:06:25 +0300 Subject: [PATCH] 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 --- tests/test_github_fetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_github_fetcher.py b/tests/test_github_fetcher.py index b506d8b..9cff317 100644 --- a/tests/test_github_fetcher.py +++ b/tests/test_github_fetcher.py @@ -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):