Skip to content

Commit

Permalink
test: Make test verbose by default with -vv in the args
Browse files Browse the repository at this point in the history
  • Loading branch information
haidaraM committed Aug 29, 2021
1 parent 7651b75 commit 80e9fbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- cli(typo): rename `--ouput-file-name` to `--output-file-name`
- test:
- Add Ansible 2.10.7 in the test matrix
- Make test verbose by default with `-vv` in the args
- docs:
- Reformat CHANGELOG
- Reformat README.md
Expand Down
2 changes: 2 additions & 0 deletions tests/test_playbook_grapher.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ def run_grapher(playbook_file: str, output_filename: str = None, additional_args
:return: SVG path and playbook absolute path
"""
additional_args = additional_args or []
# Explicitly add verbosity to the tests
additional_args.insert(0, "-vv")
playbook_path = os.path.join(FIXTURES_DIR, playbook_file)
args = [__prog__]

Expand Down

0 comments on commit 80e9fbf

Please sign in to comment.