Merge "Skip test-setup.sh in pep8 jobs"

This commit is contained in:
Zuul 2019-07-25 15:57:39 +00:00 committed by Gerrit Code Review
commit a796a2cf48
2 changed files with 15 additions and 13 deletions

View File

@ -1,14 +1,15 @@
- name: "Check if project's tools/test-setup.sh exists"
stat:
path: "{{ zuul_work_dir }}/tools/test-setup.sh"
register: p
- when: not test_setup_skip
block:
- name: "Check if project's tools/test-setup.sh exists"
stat:
path: "{{ zuul_work_dir }}/tools/test-setup.sh"
register: p
- name: Run tools/test-setup.sh
command: tools/test-setup.sh {{ test_setup_args }}
environment: "{{ test_setup_environment }}"
args:
chdir: "{{ zuul_work_dir }}"
when:
- p.stat.exists
- p.stat.executable
- not test_setup_skip
- name: Run tools/test-setup.sh
command: tools/test-setup.sh {{ test_setup_args }}
environment: "{{ test_setup_environment }}"
args:
chdir: "{{ zuul_work_dir }}"
when:
- p.stat.exists
- p.stat.executable

View File

@ -147,6 +147,7 @@
Uses tox with the ``pep8`` environment.
vars:
tox_envlist: pep8
test_setup_skip: true
- job:
name: tox-cover