This repository was archived by the owner on Jun 8, 2022. It is now read-only.
File tree 6 files changed +79
-2
lines changed
6 files changed +79
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ install:
12
12
- python --version
13
13
- ansible --version
14
14
- " printf '[defaults]\n roles_path = ../' > ansible.cfg"
15
+ - " printf 'requests==2.18.4' > /opt/requirements.txt"
15
16
script :
16
17
- ansible-lint tasks/main.yml
17
18
- ansible-playbook -i tests/inventory --syntax-check --list-tasks tests/test.yml
@@ -23,3 +24,6 @@ script:
23
24
|| (echo 'Idempotence test: fail' && exit 1)
24
25
- stat /usr/local/pythonz/pythons/CPython-3.6.2/bin/python
25
26
- stat /usr/local/pythonz/pythons/CPython-3.6.3/bin/python
27
+ - /opt/test_env/env_1/bin/python --version == 'Python 3.6.1'
28
+ - /opt/test_env/env_1/bin/pip freeze | grep -q 'requests==2.18.4' && exit 0 || exit 1
29
+ - /opt/test_env/env_2/bin/python --version == 'Python 3.6.2'
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ Role Variables
14
14
--------------
15
15
16
16
* ` python_versions ` : List of valid python 3 versions to install.
17
+ * ` virtualenvs ` : Dict of virtual environment to create. With keys:
18
+ * ` path ` : Virtual environment directory
19
+ * ` version ` : Virtual environment python version
20
+ * ` requirements ` : Requirements.txt file to install
17
21
* ` pythonz_repo ` : Git url to the pythonz repository (default to: https://github.com/saghul/pythonz.git )
18
22
* ` pythonz_version ` : Version of pythonz to download (default to: master)
19
23
@@ -31,6 +35,14 @@ Example Playbook
31
35
python_versions :
32
36
- " 3.6.2"
33
37
- " 3.6.3"
38
+ virtualenvs :
39
+ env_1 :
40
+ path : /opt/env_1
41
+ version : " 3.6.1"
42
+ requirements : requirements.txt
43
+ env_2 :
44
+ path : /opt/env_2
45
+ version : " 3.6.2"
34
46
` ` `
35
47
36
48
License
Original file line number Diff line number Diff line change 1
1
---
2
2
pythonz_version : master
3
3
pythonz_repo : https://github.com/saghul/pythonz.git
4
- python_versions :
5
- - " 3.6.3"
Original file line number Diff line number Diff line change 1
1
---
2
2
- import_tasks : pythonz.yml
3
+
3
4
- include_tasks : python.yml
4
5
with_items : " {{ python_versions }}"
5
6
loop_control :
6
7
loop_var : python_version
8
+ when : python_versions is defined
9
+
10
+ - include_tasks : virtualenv.yml
11
+ with_dict : " {{ virtualenvs }}"
12
+ loop_control :
13
+ loop_var : virtualenv
14
+ when : virtualenvs is defined
Original file line number Diff line number Diff line change
1
+ ---
2
+ - include_tasks : python.yml
3
+ with_items :
4
+ - " {{ virtualenv.value.version }}"
5
+ loop_control :
6
+ loop_var : python_version
7
+
8
+ - name : Virtualenv exist
9
+ stat :
10
+ path : " {{ virtualenv.value.path }}/bin/python"
11
+ register : current_env
12
+
13
+ - name : " Verify {{ virtualenv.key }} python version"
14
+ command : " {{ virtualenv.value.path }}/bin/python --version"
15
+ register : current_python_version
16
+ changed_when : False
17
+ when :
18
+ - current_env.stat.exists
19
+
20
+ - name : " Wrong python version in {{ virtualenv.key }}"
21
+ file :
22
+ state : absent
23
+ path : " {{ virtualenv.value.path }}"
24
+ force : yes
25
+ when :
26
+ - not current_python_version|skipped
27
+ - virtualenv.value.version not in current_python_version.stdout
28
+
29
+ - name : " Create environment {{ virtualenv.key }}"
30
+ pip :
31
+ virtualenv : " {{ virtualenv.value.path }}"
32
+ virtualenv_command : " /usr/local/pythonz/pythons/CPython-{{ virtualenv.value.version }}/bin/python -m venv"
33
+ state : latest
34
+ name : pip
35
+
36
+ - name : Update setuptools
37
+ pip :
38
+ virtualenv : " {{ virtualenv.value.path }}"
39
+ state : latest
40
+ name : setuptools
41
+
42
+ - name : Requirements
43
+ pip :
44
+ virtualenv : " {{ virtualenv.value.path }}"
45
+ requirements : " {{ virtualenv.value.requirements }}"
46
+ when :
47
+ - virtualenv.value.requirements is defined
Original file line number Diff line number Diff line change 4
4
python_versions :
5
5
- " 3.6.3"
6
6
- " 3.6.2"
7
+ virtualenvs :
8
+ env_1 :
9
+ path : /opt/test_env/env_1
10
+ version : " 3.6.1"
11
+ requirements : /opt/requirements.txt
12
+ env_2 :
13
+ path : /opt/test_env/env_2
14
+ version : " 3.6.2"
7
15
roles :
8
16
- ansible-role-python
You can’t perform that action at this time.
0 commit comments