Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyc committed Mar 1, 2016
1 parent bf4fae9 commit 702387f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tasks/setup-Debian.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
- name: Ensure dependencies for installing from source are installed.
apt: "pkg={{ item }} state=installed"
with_items:
- make

- name: Ensure GraphViz is installed.
apt: pkg=graphviz state=installed
5 changes: 5 additions & 0 deletions tasks/setup-RedHat.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
- name: Ensure dependencies for installing from source are installed.
yum: "pkg={{ item }} state=installed"
with_items:
- make

- name: Ensure GraphViz is installed.
yum: pkg=graphviz state=installed
3 changes: 3 additions & 0 deletions tests/test-source.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
- hosts: all

vars:
php_enable_webserver: false

roles:
- geerlingguy.php
- role_under_test

0 comments on commit 702387f

Please sign in to comment.