Try Sauce Labs on pushes

It seems that phantomjs 2.0.0 has problems with running tessts built
with new ember-cli and sauce labs tests seem to work again. I'm
switching back to sauce labs on pushes for the time being.
This commit is contained in:
Piotr Sarnacki 2015-12-03 13:59:49 +01:00
parent 87fdd95a6f
commit 9201f86921
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ matrix:
fast_finish: true
#addons:
# sauce_connect: true
addons:
sauce_connect: true
sudo: false

View File

@ -4,7 +4,7 @@ pull_request = ENV['TRAVIS_PULL_REQUEST'] != 'false'
testem = JSON.parse(File.read('testem.json'))
testem['launch_in_ci'] = ['PhantomJS']
#testem['launch_in_ci'] += ['SL_chrome', 'SL_firefox'] unless pull_request
testem['launch_in_ci'] = ['PhantomJS']
testem['launch_in_ci'] = ['SL_chrome', 'SL_firefox'] unless pull_request
File.open('testem.json', 'w') { |f| f.write testem.to_json }