23 lines
558 B
YAML
23 lines
558 B
YAML
---
|
|
|
|
- name: Install common python packages
|
|
dnf:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- pipenv
|
|
|
|
- name: Delete Python cache files
|
|
command: find . -type d -name __pycache__ -exec rm -r {} +
|
|
args:
|
|
chdir: "{{ project_path }}"
|
|
changed_when: false
|
|
|
|
- name: Install packages
|
|
command: pipenv install --python=/usr/bin/python3.6m --three --system --deploy
|
|
|
|
- name: Install development related packages
|
|
command: pipenv install --python=/usr/bin/python3.6m --three --system --deploy --dev
|
|
args:
|
|
chdir: "{{ project_path }}"
|