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

@ -11,6 +11,8 @@ repo_dir="${temp_dir}/repo"
pull_dir="${temp_dir}/pull"
temp_log="${temp_dir}/pull.log"
ansible-playbook setup.yml
cp -av "pull-integration-test" "${repo_dir}"
cd "${repo_dir}"
(

View file

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