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 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-01-18 00:11:10 +03:00
parent 62ae29c21b
commit b57bfa55b1

View File

@@ -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.