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 1f2992b
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 @@ -29,7 +29,7 @@ def koji_command(*args, _input=None, _globals=None, **kwargs):


def koji_command_cwd(*args, cwd=None, _input=None, _globals=None, **kwargs):
args = list(args) + [f'--{k}={v}' for k, v in kwargs.items()]
args = list(args) + [f'--{k}={v}' for k, v in kwargs.items()] + ["--debug"]
if _globals:
args = [f'--{k}={v}' for k, v in _globals.items()] + args
cmd = ["koji"] + args
Expand Down

0 comments on commit 1f2992b

Please sign in to comment.