Skip to content
This repository was archived by the owner on Jun 8, 2022. It is now read-only.

Commit 67762d1

Browse files
committedNov 10, 2017
Create virtualenvs
1 parent 9495357 commit 67762d1

File tree

6 files changed

+79
-2
lines changed

6 files changed

+79
-2
lines changed
 

‎.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ install:
1212
- python --version
1313
- ansible --version
1414
- "printf '[defaults]\nroles_path = ../' > ansible.cfg"
15+
- "printf 'requests==2.18.4' > /opt/requirements.txt"
1516
script:
1617
- ansible-lint tasks/main.yml
1718
- ansible-playbook -i tests/inventory --syntax-check --list-tasks tests/test.yml
@@ -23,3 +24,6 @@ script:
2324
|| (echo 'Idempotence test: fail' && exit 1)
2425
- stat /usr/local/pythonz/pythons/CPython-3.6.2/bin/python
2526
- 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'

‎README.md

+12
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Role Variables
1414
--------------
1515

1616
* `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
1721
* `pythonz_repo`: Git url to the pythonz repository (default to: https://github.com/saghul/pythonz.git)
1822
* `pythonz_version`: Version of pythonz to download (default to: master)
1923

@@ -31,6 +35,14 @@ Example Playbook
3135
python_versions:
3236
- "3.6.2"
3337
- "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"
3446
```
3547
3648
License

‎defaults/main.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
---
22
pythonz_version: master
33
pythonz_repo: https://github.com/saghul/pythonz.git
4-
python_versions:
5-
- "3.6.3"

‎tasks/main.yml

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
---
22
- import_tasks: pythonz.yml
3+
34
- include_tasks: python.yml
45
with_items: "{{ python_versions }}"
56
loop_control:
67
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

‎tasks/virtualenv.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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

‎tests/test.yml

+8
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,13 @@
44
python_versions:
55
- "3.6.3"
66
- "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"
715
roles:
816
- ansible-role-python

0 commit comments

Comments
 (0)
This repository has been archived.