From 62ae29c21ba6530a2e039a7caa02c7d639fbae24 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 18 Jan 2026 00:08:41 +0300 Subject: [PATCH] fix: Correct fixture name in test_bootstrap_skill.py Changed _tmp_path to tmp_path to fix pytest fixture error: - Line 54: test_bootstrap_script_runs fixture parameter Error was: fixture '_tmp_path' not found available fixtures: ..., tmp_path, ... This was causing 1 ERROR in CI test runs across all Python versions. 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 87a6dce..8507a4d 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, tmp_path): """Test that bootstrap script runs successfully. Note: This test is slow as it runs full codebase analysis.