Skip to content

Commit

Permalink
ci: Increase failure message size
Browse files Browse the repository at this point in the history
The message size of 2500 characters is not enough to provide enough
information for some test case failures. Doubling the size will provide
more information to evaluate test failure.
  • Loading branch information
rjeffman committed Nov 4, 2023
1 parent f1a6f44 commit b2deace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def run_playbook(playbook, allow_failures=False):

# Need to get the last bytes of msg otherwise Azure
# will cut it out.
assert result.returncode == 0, assert_msg[-2500:]
assert result.returncode == 0, assert_msg[-5000:]

return result

Expand Down

0 comments on commit b2deace

Please sign in to comment.