There was an error while loading. Please reload this page.
1 parent 5431c8e commit 0452674Copy full SHA for 0452674
1 file changed
tests/test_install.py
@@ -51,8 +51,10 @@ def test_no_flag_exits_with_validation_error(self) -> None:
51
install(skills=False)
52
53
def test_skills_flag_prints_success(self, tmp_path: Path) -> None:
54
- with patch("qodev_gitlab_cli.commands.install.console") as mock_console, \
55
- patch("qodev_gitlab_cli.commands.install.Path") as mock_path:
+ with (
+ patch("qodev_gitlab_cli.commands.install.console") as mock_console,
56
+ patch("qodev_gitlab_cli.commands.install.Path") as mock_path,
57
+ ):
58
mock_path.cwd.return_value = tmp_path
59
install(skills=True)
60
0 commit comments