Skip to content

Commit

Permalink
Update pip
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Jan 19, 2023
1 parent 0d416d1 commit b321844
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions roles/ansible-test/tasks/init_collection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@
state: directory
path: /var/tmp/ansible-test-pip

- name: Update pip
shell: "{{ ansible_test_venv_path }}/bin/pip install --upgrade pip"
register: r
until: r.rc == 0
retries: 2
delay: 60
environment:
TMPDIR: /var/tmp/ansible-test-pip

- name: Install python requirements
shell: "{{ ansible_test_venv_path }}/bin/pip install {{ _test_requirements }} {{ _test_constraints }}"
register: r
Expand Down

0 comments on commit b321844

Please sign in to comment.