mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
546 B
24 lines
546 B
# 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
|
|
|
|
|