We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c303960 commit 11ee7dfCopy full SHA for 11ee7df
1 file changed
tests/pre.yml
@@ -3,22 +3,13 @@
3
- name: pre | install dependencies
4
apt:
5
name: "{{ item }}"
6
- state: latest
+ state: "{{ apt_install_state | default('latest') }}"
7
update_cache: true
8
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
9
with_items:
10
- python
11
- curl
12
13
-- name: pre | install setuptools
14
- shell: "curl -sL https://bootstrap.pypa.io/ez_setup.py | python -"
15
- changed_when: false
16
-
17
- name: pre | install pip
18
- easy_install:
19
- name: pip
20
21
-- name: pre | update pip
22
- pip:
23
24
+ shell: curl -sL https://bootstrap.pypa.io/get-pip.py | python -
+ changed_when: false
0 commit comments