From 2f2f024767bf4022203a845d9ae1871aa0c07f62 Mon Sep 17 00:00:00 2001 From: Sara Arjona Date: Wed, 21 Mar 2018 11:49:25 +0100 Subject: [PATCH] Workaround for fixing behat tests issue with selenium As explained in https://github.com/moodlerooms/moodle-plugin-ci/issues/70, selenium server is not running due to some issue when "sudo: false" and, therefore, @javascript behat tests are not working. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9b1022f..936fcea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ language: php -sudo: false +# Workaround for fixing that Selenium server is not running and therefore javascript Behat tests are not working: +# https://github.com/moodlerooms/moodle-plugin-ci/issues/70 +sudo: required +# ORIGINAL: +# sudo: false addons: firefox: "47.0.1"