puppet-openstack-integration/playbooks/run-libraries-unit-tests.yaml

14 lines
390 B
YAML

- hosts: all
tasks:
- shell:
cmd: |
set -e
set -x
if [ "{{ puppet_gem_version }}" != "latest" ]; then
export PUPPET_GEM_VERSION='~> {{ puppet_gem_version }}.0'
fi
./run_unit_tests.sh
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'