Skip to content

Commit 305e56d

Browse files
style: Format test_setup_scripts.py with ruff
Fix GitHub Actions CI failure - ruff format check. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent fe08fd4 commit 305e56d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_setup_scripts.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ def test_requirements_txt_path(self, script_content):
6464
# v2.0.0 uses '-e .' (editable install) instead of requirements files
6565
# v2.7.0 PR #252 uses '-e ".[mcp]"' with MCP extra dependencies
6666
# The actual command is "$PIP_INSTALL_CMD -e ." or "$PIP_INSTALL_CMD -e ".[mcp]""
67-
has_editable = " -e ." in script_content or " -e." in script_content or '-e ".' in script_content
67+
has_editable = (
68+
" -e ." in script_content or " -e." in script_content or '-e ".' in script_content
69+
)
6870
assert has_editable, (
6971
"Should use '-e .' or '-e \".[mcp]\"' for editable install (modern packaging)"
7072
)

0 commit comments

Comments
 (0)