Emit a message about the final tox invocation

In the tox job it's nice to see what it is that we're gonna run. It's in
the json file, but that's a little bit hidden.

Change-Id: Iebe4b4c67d00ebc21be9038e06f1ee09badb4eb1
This commit is contained in:
Monty Taylor 2017-09-27 16:36:59 -05:00
parent 204f96e1ef
commit b2befeb2b4
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,10 @@
UPPER_CONSTRAINTS_FILE: "{{ tox_constraints_file }}"
when: not stat_results|skipped and stat_results.stat.exists
- name: Emit tox command
debug:
msg: "Running tox: {{ tox_executable }} -e{{ tox_envlist }} {{ tox_extra_args }}"
- name: Run tox
args:
chdir: "{{ zuul_work_dir }}"