Skip to content

Commit aa47506

Browse files
committed
Try to get tests running on SL again
1 parent 150f147 commit aa47506

File tree

4 files changed

+30
-9
lines changed

4 files changed

+30
-9
lines changed

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ branches:
3535
before_install:
3636
- "export CHROME_BIN=chromium-browser"
3737

38+
install:
39+
- npm config set spin false
40+
3841
before_script:
39-
- echo "TRAVIS_PULL_REQUEST $TRAVIS_PULL_REQUEST ${TRAVIS_PULL_REQUEST}"
40-
- echo "TRAVIS_BRANCH $TRAVIS_BRANCH ${TRAVIS_BRANCH}"
4142
- git fetch --tags
4243
- chmod +x ./lib/sauce/sauce_connect_setup.sh ./lib/sauce/sauce_connect_block.sh ./travis_build.sh ./travis_print_logs.sh
4344
- export DISPLAY=:99.0

lib/grunt/plugins.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,14 @@ module.exports = function(grunt) {
8282
// Run multiple tests serially, but continue if one of them fails.
8383
// Adapted from http://stackoverflow.com/questions/16487681/gruntfile-getting-error-codes-from-programs-serially
8484
grunt.registerTask('serialsauce', function(){
85+
// util.travisFoldStart('serialsauce');
86+
8587
var options = grunt.config('serialsauce');
8688

8789
var done = this.async();
8890

8991
var tasks = {}; options.map(function(t) { tasks[t] = 0 });
9092

91-
// console.log('options', this.options());
92-
93-
// grunt.task.run(options);
94-
9593
var success = true;
9694
grunt.util.async.forEachSeries(Object.keys(tasks),
9795
function(task, next) {
@@ -108,6 +106,7 @@ module.exports = function(grunt) {
108106
});
109107
},
110108
function() {
109+
// util.travisFoldEnd('serialsauce');
111110
done(success);
112111
});
113112
});

lib/grunt/utils.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,15 @@ var util = module.exports = {
323323
return v;
324324
}
325325
}
326-
}
326+
},
327327

328+
travisFoldStart: function (msg) {
329+
if (!msg) { return; }
330+
grunt.log.writeln('travis_fold:start:' + msg);
331+
},
332+
333+
travisFoldEnd: function (msg) {
334+
if (!msg) { return; }
335+
grunt.log.writeln('travis_fold:end:' + msg);
336+
}
328337
};

test/karma.conf.js

+14-2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ module.exports = function(config) {
9494
username: 'nggrid',
9595
startConnect: false,
9696
testName: 'ui-grid unit tests',
97+
options: {
98+
'selenium-version': '2.41.0' // NOTE: trying this to see if tests run better
99+
}
97100
},
98101

99102
// For more browsers on Sauce Labs see:
@@ -105,11 +108,13 @@ module.exports = function(config) {
105108
// TODO(c0bra): remove once SauceLabs supports websockets.
106109
// This speeds up the capturing a bit, as browsers don't even try to use websocket. -- (thanks vojta)
107110
if (process.env.TRAVIS) {
108-
config.logLevel = config.LOG_DEBUG;
111+
config.logLevel = config.LOG_INFO;
112+
config.browserNoActivityTimeout: 120000; // NOTE: from angular.js, for socket.io buffer
113+
config.reporters = ['dots', 'coverage'];
109114

110115
var buildLabel = 'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
111116

112-
config.transports = ['websocket', 'xhr-polling'];
117+
// config.transports = ['websocket', 'xhr-polling'];
113118

114119
config.sauceLabs.build = buildLabel;
115120
config.sauceLabs.startConnect = false;
@@ -122,6 +127,13 @@ module.exports = function(config) {
122127
type: 'file',
123128
filename: process.env.LOGS_DIR + '/' + ('karma.log')
124129
});
130+
131+
132+
// NOTE: From angular.js project, only applies to SauceLabs -- (thanks Vojta again)
133+
// Allocating a browser can take pretty long (eg. if we are out of capacity and need to wait
134+
// for another build to finish) and so the `captureTimeout` typically kills
135+
// an in-queue-pending request, which makes no sense.
136+
config.captureTimeout = 0;
125137
}
126138

127139
if (grunt.option('browsers')) {

0 commit comments

Comments
 (0)