e40889e711
* Enable installing collections from git repositories * Add tests for installing individual and multiple collections from git repositories * Test to make sure recursive dependencies with different syntax are deduplicated * Add documentation * add a changelog * Skip Python 2.6 * Only fail if no collections are located in a git repository Add support for a 'type' key for collections in requirement.yml files. Update the changelog and document the supported keys and allowed values for the type. Add a note that the collection(s) in the repo must contain a galaxy.yml * Add a warning about embedding credentials in SCM URLs * Update with review suggestions * suppress sanity compile failure for Python 2.6
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
- name: Rerun installing a collection with a dep
|
|
command: 'ansible-galaxy collection install git+file://{{ galaxy_dir }}/development/ansible_test/.git#/collection_1/'
|
|
register: installed
|
|
|
|
- assert:
|
|
that:
|
|
- "'Skipping' in installed.stdout"
|
|
- "'Created' not in installed.stdout"
|
|
|
|
- name: Only reinstall the collection
|
|
command: 'ansible-galaxy collection install git+file://{{ galaxy_dir }}/development/ansible_test/.git#/collection_1/ --force'
|
|
register: installed
|
|
|
|
- assert:
|
|
that:
|
|
- "'Created collection for ansible_test.collection_1' in installed.stdout"
|
|
- "'Created collection for ansible_test.collection_2' not in installed.stdout"
|
|
- "'Skipping' in installed.stdout"
|
|
|
|
- name: Reinstall the collection and dependency
|
|
command: 'ansible-galaxy collection install git+file://{{ galaxy_dir }}/development/ansible_test/.git#/collection_1/ --force-with-deps'
|
|
register: installed
|
|
|
|
- assert:
|
|
that:
|
|
- "'Created collection for ansible_test.collection_1' in installed.stdout"
|
|
- "'Created collection for ansible_test.collection_2' in installed.stdout"
|
|
- "'Skipping' not in installed.stdout"
|
|
|
|
- include_tasks: ./empty_installed_collections.yml
|
|
when: cleanup
|