From b57bfa55b1fd33107625335f6a0bfe8865464bc8 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 18 Jan 2026 00:11:10 +0300 Subject: [PATCH] fix: Remove unused tmp_path parameter from test_bootstrap_script_runs Removed unused tmp_path fixture parameter to fix ruff ARG002 error: - Line 54: test_bootstrap_script_runs now only takes project_root The test doesn't use tmp_path - it runs bootstrap in project_root and checks output/skill-seekers/ directory. Fixes ruff error: ARG002 Unused method argument: `tmp_path` Co-Authored-By: Claude Sonnet 4.5 --- tests/test_bootstrap_skill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_bootstrap_skill.py b/tests/test_bootstrap_skill.py index 8507a4d..62e1a78 100644 --- a/tests/test_bootstrap_skill.py +++ b/tests/test_bootstrap_skill.py @@ -51,7 +51,7 @@ class TestBootstrapSkillScript: assert "description:" in content, "Header must have description" @pytest.mark.slow - def test_bootstrap_script_runs(self, project_root, tmp_path): + def test_bootstrap_script_runs(self, project_root): """Test that bootstrap script runs successfully. Note: This test is slow as it runs full codebase analysis.