mirror of
https://github.com/fspc/workstand.git
synced 2025-04-04 10:03:22 -04:00
25 lines
546 B
YAML
25 lines
546 B
YAML
# Integration testing playbook
|
|
# ----------------------------
|
|
|
|
# A playbook for testing and integration.
|
|
|
|
# It will provision the `test` hosts in the inventory,
|
|
# which will, by default, specify the provided vagrant VM.
|
|
|
|
# This playbook should aim to test the most extensive
|
|
# or comprehensive configuration possible for your role.
|
|
|
|
|
|
- name: 'Role integration tests'
|
|
|
|
hosts: test
|
|
|
|
vars:
|
|
postgresql_dev_headers: yes
|
|
postgresql_contrib: yes
|
|
postgresql_postgis: yes
|
|
|
|
roles:
|
|
- '.' # The current directory itself is the role
|
|
|