summaryrefslogtreecommitdiff
path: root/test/integration/targets/git
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2020-08-07 14:28:10 -0500
committerGitHub <noreply@github.com>2020-08-07 14:28:10 -0500
commit7c60dadb9a3832dee0014113a337bc10fa1088c0 (patch)
treeb60f7cc1c219cf3eb13c0229ade2b05e7f934439 /test/integration/targets/git
parent56748a80609c5d402a8cf72c0a4396f87282957f (diff)
downloadansible-7c60dadb9a3832dee0014113a337bc10fa1088c0.tar.gz
Updates to Integration tests to pass against Alpine (#70946)
* Start of alpine testing * More updates * Add forgotten file * remove debug * Add alpine3 * equal * group 4 * group 4 * group 5 * Try to decrease test length * libuser only available in testing * Remove debug * Make loops target work on hosts without gnu date * Enable alpine testing * ci_complete * Don't specify uid for creating test user * ci_complete * Re-sort docker completion * use newer container image * ci_complete * fix indentation Co-authored-by: Matt Clay <matt@mystile.com> Co-authored-by: Matt Clay <matt@mystile.com>
Diffstat (limited to 'test/integration/targets/git')
-rw-r--r--test/integration/targets/git/tasks/setup.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/git/tasks/setup.yml b/test/integration/targets/git/tasks/setup.yml
index 16c56904ab..3158bf62d1 100644
--- a/test/integration/targets/git/tasks/setup.yml
+++ b/test/integration/targets/git/tasks/setup.yml
@@ -11,7 +11,7 @@
- name: SETUP | install git
package:
name: '{{ item }}'
- when: ansible_distribution != "MacOSX"
+ when: ansible_distribution not in ["MacOSX", "Alpine"]
notify:
- cleanup
with_items: "{{ git_required_packages[ansible_os_family | default('default') ] | default(git_required_packages.default) }}"