issue #477: one more conditional test.

issue510
David Wilson 6 years ago
parent 59e5276af3
commit 9aff8edf50

@ -8,20 +8,20 @@
# Can't use pip module because it can't create virtualenvs, must call it # Can't use pip module because it can't create virtualenvs, must call it
# directly. # directly.
- shell: virtualenv /tmp/issue_152_virtualenv - shell: virtualenv /tmp/issue_152_virtualenv
when: lout.python_version != '2.6' when: lout.python_version > '2.6'
- custom_python_detect_environment: - custom_python_detect_environment:
vars: vars:
ansible_python_interpreter: /tmp/issue_152_virtualenv/bin/python ansible_python_interpreter: /tmp/issue_152_virtualenv/bin/python
register: out register: out
when: lout.python_version != '2.6' when: lout.python_version > '2.6'
- assert: - assert:
that: that:
- out.sys_executable == "/tmp/issue_152_virtualenv/bin/python" - out.sys_executable == "/tmp/issue_152_virtualenv/bin/python"
when: lout.python_version != '2.6' when: lout.python_version > '2.6'
- file: - file:
path: /tmp/issue_152_virtualenv path: /tmp/issue_152_virtualenv
state: absent state: absent
when: lout.python_version != '2.6' when: lout.python_version > '2.6'

Loading…
Cancel
Save