horizon/roles/setup-selenium-tests/tasks/main.yaml
Ivan Kolodyazhny ee95bf15d9 Fix selenuim-headless tests
This patch leave selenuim-headless non-voting since it was broken for a
while so we should be sure that it's stable enough.

Related blueprint: improve-horizon-testing
Change-Id: Ic2a877a4eefc2f10fb25e64c387b81fc18302a2a
2018-06-08 12:22:10 +00:00

14 lines
271 B
YAML

---
- name: download the Gecko WebDriver
get_url:
url: "{{ geckodriver_url }}"
dest: "/tmp/geckodriver.package"
- name: extract the Gecko WebDriver
become: true
unarchive:
src: "/tmp/geckodriver.package"
dest: "/usr/local/bin"
remote_src: yes