summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy-collection-scm/tasks/test_supported_resolvelib_versions.yml
blob: 029cbb3a82b6860c0c93ab5ed033545892a3f0b7 (plain)
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
- vars:
    venv_cmd: "{{ ansible_python_interpreter ~ ' -m venv' }}"
    venv_dest: "{{ galaxy_dir }}/test_venv_{{ resolvelib_version }}"
  block:
    - name: install another version of resolvelib that is supported by ansible-galaxy
      pip:
        name: resolvelib
        version: "{{ resolvelib_version }}"
        state: present
        virtualenv_command: "{{ venv_cmd }}"
        virtualenv: "{{ venv_dest }}"
        virtualenv_site_packages: True

    - include_tasks: ./scm_dependency_deduplication.yml
      args:
        apply:
          environment:
            PATH: "{{ venv_dest }}/bin:{{ ansible_env.PATH }}"
            ANSIBLE_CONFIG: '{{ galaxy_dir }}/ansible.cfg'

  always:
    - name: remove test venv
      file:
        path: "{{ venv_dest }}"
        state: absent