blob: e2326560c2a2f9921c13c122b9d6f2062e35ae97 (
plain)
1
2
3
4
5
6
7
8
9
|
---
- hosts: all
sudo: yes
tasks:
- name: Copy execute_smoke_tests.sh
copy: src=execute_smoke_tests.sh dest=~/execute_smoke_tests.sh mode=0755
- name: Execute Tests
command: sh ~/execute_smoke_tests.sh | tee ~/unit_tests.out
|