Fix ansible-test virtualenv use in import test.
This commit is contained in:
parent
c04f5a1d65
commit
998badbda5
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