File: scm_dependency.yml

package info (click to toggle)
ansible-core 2.19.0~beta6-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 32,628 kB
  • sloc: python: 180,313; cs: 4,929; sh: 4,601; xml: 34; makefile: 21
file content (29 lines) | stat: -rw-r--r-- 1,080 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- name: test installing one collection that has a SCM dep with --no-deps
  command: 'ansible-galaxy collection install git+file://{{ test_repo_path }}/.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://{{ test_repo_path }}/.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