Fix ansible-test virtualenv use in import test.
(cherry picked from commit 998badbda5
)
This commit is contained in:
parent
cc5d880a61
commit
3514a5d1b9
1 changed files with 3 additions and 1 deletions
|
@ -67,7 +67,9 @@ class ImportTest(SanityMultipleVersion):
|
|||
|
||||
remove_tree(virtual_environment_path)
|
||||
|
||||
cmd = ['virtualenv', virtual_environment_path, '--python', find_python(python_version), '--no-setuptools', '--no-wheel']
|
||||
python = find_python(python_version)
|
||||
|
||||
cmd = [python, '-m', 'virtualenv', virtual_environment_path, '--python', python, '--no-setuptools', '--no-wheel']
|
||||
|
||||
if not args.coverage:
|
||||
cmd.append('--no-pip')
|
||||
|
|
Loading…
Reference in a new issue