Move requirements into tests. (#35885)

This commit is contained in:
Matt Clay 2018-02-10 10:48:44 -08:00 committed by GitHub
commit e7b793c8c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 58 additions and 26 deletions

View file

@ -1 +1,2 @@
destructive
posix/ci/group3

View file

@ -2,6 +2,8 @@
set -eux -o pipefail
ansible-playbook setup.yml
# Need a relative custom roles path for testing various scenarios of -p
galaxy_relative_rolespath="my/custom/roles/path"

View file

@ -0,0 +1,6 @@
- hosts: localhost
tasks:
- name: install git
package:
name: git
when: ansible_distribution != "MacOSX"