mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a047fe0e4c
* Correct usage for shutil.rmtree Fix adds correct usage of shutil.rmtree in git module Fixes: #31225 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Include archive tests so they get run * Use new include syntax * Cleanup syntax on git tests - use multi-line YAML - remove unneeded {{ }} around vars in conditionals - remove unneeded quotes - add task file name to task names for easier troubleshooting when things fail * Make archive tests work for RHEL/CentOS 6 The older versions of Jinja2 in RHEL/CentOS 6 required assertion tasks using the map filter to be skipped. The older version of git required gzip compression to be skipped on RHEL/CentOS 6. * Account for ansible_distribution_major_version missing
13 lines
327 B
YAML
13 lines
327 B
YAML
# Test a non-updating repo query with no destination specified
|
|
|
|
- name: NO-DESTINATION | get info on a repo without updating and with no destination specified
|
|
git:
|
|
repo: '{{ repo_dir }}/minimal'
|
|
update: no
|
|
clone: no
|
|
accept_hostkey: yes
|
|
register: git_result
|
|
|
|
- assert:
|
|
that:
|
|
- git_result | changed
|