Use ansible_python for interpreter in test_uri. (#17376)

pull/17381/head
Matt Clay 8 years ago committed by GitHub
parent 7cd988f60c
commit 4ae59b2743

@ -41,12 +41,8 @@
src: "testserver.py"
dest: "{{ output_dir }}/testserver.py"
- name: verify that python2 is installed so this test can continue
shell: which python2
register: py2
- name: start SimpleHTTPServer
shell: cd {{ files_dir }} && {{ py2.stdout }} {{ output_dir}}/testserver.py {{ http_port }}
shell: cd {{ files_dir }} && {{ ansible_python.executable }} {{ output_dir}}/testserver.py {{ http_port }}
async: 60 # this test set takes ~15 seconds to run
poll: 0

Loading…
Cancel
Save