Skip to content

Commit

Permalink
Enable debug output in koji
Browse files Browse the repository at this point in the history
  • Loading branch information
elkoniu committed Jan 8, 2024
1 parent 197b77f commit 9a73ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test_koji.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def koji_command_cwd(*args, cwd=None, _input=None, _globals=None, **kwargs):
args = list(args) + [f'--{k}={v}' for k, v in kwargs.items()]
if _globals:
args = [f'--{k}={v}' for k, v in _globals.items()] + args
cmd = ["koji"] + args
cmd = ["koji"] + ["--debug"] + args
logger.info("Running %s", str(cmd))
return subprocess.run(cmd,
cwd=cwd,
Expand Down

0 comments on commit 9a73ea3

Please sign in to comment.