We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8fb6f commit 0ba22eeCopy full SHA for 0ba22ee
1 file changed
tests/test_cli.py
@@ -58,7 +58,8 @@ def test_install_all_uses_all_extra(self, mock_run):
58
call_args = mock_run.call_args[0][0] # positional arg: the command list
59
# Must contain the git+ URL with [all] extra, not a comma-joined list
60
pkg_arg = next((a for a in call_args if "devforge-cli.git[" in a), None)
61
- assert pkg_arg == "git+https://github.com/Coding-Dev-Tools/devforge-cli.git[all]", f"Expected git+...devforge-cli.git[all], got {pkg_arg}"
+ expected = "git+https://github.com/Coding-Dev-Tools/devforge-cli.git[all]"
62
+ assert pkg_arg == expected, f"Expected {expected}, got {pkg_arg}"
63
64
def test_install_unknown_tool(self):
65
"""Error on unknown tool name."""
0 commit comments