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 6bfdd21
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
path: "{{ item }}"
state: directory
mode: 0755
follow: true
with_items: "{{ php_xhprof_config_dirs }}"

- name: Copy XHProf INI into various other conf folders.
Expand Down
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 6bfdd21

Please sign in to comment.