mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
563 B
YAML
16 lines
563 B
YAML
5 years ago
|
- name: test installing one collection
|
||
|
command: 'ansible-galaxy collection install git+file://{{ galaxy_dir }}/development/ansible_test/.git#collection_2'
|
||
|
|
||
|
- name: list installed collections
|
||
|
command: 'ansible-galaxy collection list'
|
||
|
register: installed_collections
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "'amazon.aws' not in installed_collections.stdout"
|
||
|
- "'ansible_test.collection_1' not in installed_collections.stdout"
|
||
|
- "'ansible_test.collection_2' in installed_collections.stdout"
|
||
|
|
||
|
- include_tasks: ./empty_installed_collections.yml
|
||
|
when: cleanup
|