1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

pip: Use chdir directive in the venv path (fixes #25122) (#26865)

This commit is contained in:
Lujeni 2017-10-13 12:39:47 +02:00 committed by Martin Krizek
parent 046d430a26
commit 91ab88dac7
2 changed files with 24 additions and 2 deletions

View file

@ -380,6 +380,11 @@ def main():
virtualenv_python = module.params['virtualenv_python']
chdir = module.params['chdir']
umask = module.params['umask']
env = module.params['virtualenv']
venv_created = False
if chdir:
env = os.path.join(chdir, env)
if umask and not isinstance(umask, int):
try:
@ -402,8 +407,6 @@ def main():
err = ''
out = ''
env = module.params['virtualenv']
venv_created = False
if env:
if not os.path.exists(os.path.join(env, 'bin', 'activate')):
venv_created = True

View file

@ -183,3 +183,22 @@
assert:
that:
- "pip_install_venv.changed"
# https://github.com/ansible/ansible/issues/25122
- name: ensure is a fresh virtualenv
file:
state: absent
name: "{{ output_dir }}/pipenv"
- name: install requirements file into virtual + chdir
pip:
name: q
chdir: "{{ output_dir }}/"
virtualenv: "pipenv"
state: present
register: venv_chdir
- name: make sure fresh virtualenv + chdir report changed
assert:
that:
- "venv_chdir.changed"