tests: replace start-stop-daemon with async action

pull/11014/head
Leonid Evdokimov 10 years ago committed by Toshio Kuratomi
parent ae9ba4afa1
commit 3383a7b37a

@ -1,3 +0,0 @@
---
- name: stop SimpleHTTPServer
shell: start-stop-daemon --stop --pidfile {{ output_dir }}/SimpleHTTPServer.pid --exec {{ py2.stdout }}

@ -27,8 +27,9 @@
register: py2
- name: start SimpleHTTPServer
shell: start-stop-daemon --start --pidfile {{ output_dir }}/SimpleHTTPServer.pid --background --make-pidfile --chdir {{ files_dir }} --exec {{ py2.stdout }} -- -m SimpleHTTPServer {{ http_port }}
notify: stop SimpleHTTPServer
shell: cd {{ files_dir }} && {{ py2.stdout }} -m SimpleHTTPServer {{ http_port }}
async: 15 # this test set takes ~8 seconds to run
poll: 0
- wait_for: port={{ http_port }}

Loading…
Cancel
Save