Skip to content

Commit

Permalink
force ansible debug
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Dec 12, 2023
1 parent a553493 commit b1c46d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bbot/core/helpers/depsinstaller/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self, parent_helper):
self.setup_status = self.read_setup_status()

self.no_deps = self.parent_helper.config.get("no_deps", False)
self.ansible_debug = self.parent_helper.config.get("debug", False)
self.ansible_debug = True
self.force_deps = self.parent_helper.config.get("force_deps", False)
self.retry_deps = self.parent_helper.config.get("retry_deps", False)
self.ignore_failed_deps = self.parent_helper.config.get("ignore_failed_deps", False)
Expand Down
2 changes: 1 addition & 1 deletion bbot/test/test_step_1/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async def test_cli(monkeypatch, bbot_config):
await cli._main()

# install all deps
monkeypatch.setattr("sys.argv", ["bbot", "-d", "--install-all-deps"])
monkeypatch.setattr("sys.argv", ["bbot", "--install-all-deps"])
success = await cli._main()
assert success, "--install-all-deps failed for at least one module"

Expand Down

0 comments on commit b1c46d4

Please sign in to comment.