Fix ansible-test virtualenv use in import test.

This commit is contained in:
Matt Clay 2018-09-04 09:28:34 -07:00
parent c04f5a1d65
commit 998badbda5

View file

@ -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')