From ae75c19f4ba7aa297196e5b32af67c80664815e0 Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Wed, 20 Dec 2017 15:31:54 +0800 Subject: [PATCH] Run core and plugin JS tests separately for now on Travis. Plugin JS acceptance tests are randomly failing due to core tests. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2775d03b45..e4f402f801 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,7 +67,8 @@ script: bundle exec rake db:create db:migrate if [ '$QUNIT_RUN' == '1' ]; then - USE_CHROME=1 LOAD_PLUGINS=1 bundle exec rake qunit:test['400000'] + bundle exec rake qunit:test['400000'] + bundle exec rake plugin:spec else bundle exec rspec && bundle exec rake plugin:spec fi