From d2660c8cadd973b7a7c8b09fa03888631f9eea4b Mon Sep 17 00:00:00 2001 From: Joe Rafaniello Date: Wed, 4 May 2016 12:22:23 -0400 Subject: Fix some typos in comments. [ci skip] --- ci/travis.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/travis.rb b/ci/travis.rb index 063c6acb07..ffeba995de 100755 --- a/ci/travis.rb +++ b/ci/travis.rb @@ -120,7 +120,7 @@ class Build def env if activesupport? && !isolated? - # There is a known issue with the listen tests that casuses files to be + # There is a known issue with the listen tests that causes files to be # incorrectly GC'ed even when they are still in-use. The current is to # only run them in isolation to avoid randomly failing our test suite. { 'LISTEN' => '0' } -- cgit v1.2.3 From 41c685608b960780e4a01baf4da1534ac86b73e9 Mon Sep 17 00:00:00 2001 From: Anubhav Saxena Date: Tue, 24 May 2016 22:42:49 +0530 Subject: Minor comment language correction. --- ci/travis.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ci') diff --git a/ci/travis.rb b/ci/travis.rb index ffeba995de..3faef500f2 100755 --- a/ci/travis.rb +++ b/ci/travis.rb @@ -121,8 +121,8 @@ class Build def env if activesupport? && !isolated? # There is a known issue with the listen tests that causes files to be - # incorrectly GC'ed even when they are still in-use. The current is to - # only run them in isolation to avoid randomly failing our test suite. + # incorrectly GC'ed even when they are still in-use. The current solution + # is to only run them in isolation to avoid randomly failing our test suite. { 'LISTEN' => '0' } else {} -- cgit v1.2.3 From 8cfce058d9d002526fd93e66957f8359985c92bf Mon Sep 17 00:00:00 2001 From: Jon Moss Date: Mon, 9 May 2016 15:42:28 -0400 Subject: CI: run Action Cable browser tests in Sauce Labs Allow failures until test runs are consistently stable, not hanging. Closes #24943. Signed-off-by: Jeremy Daer --- ci/travis.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'ci') diff --git a/ci/travis.rb b/ci/travis.rb index 3faef500f2..b8891d6889 100755 --- a/ci/travis.rb +++ b/ci/travis.rb @@ -148,6 +148,7 @@ ENV['GEM'].split(',').each do |gem| next if ENV['TRAVIS_PULL_REQUEST'] && ENV['TRAVIS_PULL_REQUEST'] != 'false' && isolated next if gem == 'railties' && isolated next if gem == 'ac' && isolated + next if gem == 'ac:integration' && isolated next if gem == 'aj:integration' && isolated next if gem == 'guides' && isolated -- cgit v1.2.3