a469a4455a
* Add ansible-galaxy-collection-scm tests for requirements.yml format * Add a test for --no-deps Fix assertion
29 lines
1.1 KiB
YAML
29 lines
1.1 KiB
YAML
- name: test installing one collection that has a SCM dep with --no-deps
|
|
command: 'ansible-galaxy collection install git+file://{{ galaxy_dir }}/development/ansible_test/.git#/collection_1/ --no-deps'
|
|
|
|
- name: list installed collections
|
|
command: 'ansible-galaxy collection list'
|
|
register: installed_collections
|
|
|
|
- assert:
|
|
that:
|
|
- "'ansible_test.collection_1' in installed_collections.stdout"
|
|
- "'ansible_test.collection_2' not in installed_collections.stdout"
|
|
|
|
- name: remove collections to test installing with the dependency
|
|
include_tasks: ./empty_installed_collections.yml
|
|
|
|
- name: test installing one collection that has a SCM dep
|
|
command: 'ansible-galaxy collection install git+file://{{ galaxy_dir }}/development/ansible_test/.git#/collection_1/'
|
|
|
|
- name: list installed collections
|
|
command: 'ansible-galaxy collection list'
|
|
register: installed_collections
|
|
|
|
- assert:
|
|
that:
|
|
- "'ansible_test.collection_1' in installed_collections.stdout"
|
|
- "'ansible_test.collection_2' in installed_collections.stdout"
|
|
|
|
- include_tasks: ./empty_installed_collections.yml
|
|
when: cleanup
|