Skip to content

Commit ea38664

Browse files
committed
add noCI tag to misbehaving tests
1 parent 31d5606 commit ea38664

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

test/jasmine/tests/select_test.js

+3-12
Original file line numberDiff line numberDiff line change
@@ -649,25 +649,16 @@ describe('Click-to-select', function() {
649649
});
650650
});
651651

652-
// The gl traces: use @gl CI annotation
652+
// The gl and mapbox traces: use @gl and @noCI tag
653653
[
654654
testCase('scatterpolargl', require('@mocks/glpolar_scatter.json'), 130, 290,
655655
[[], [], [], [19], [], []], { dragmode: 'zoom' }),
656-
testCase('splom', require('@mocks/splom_lower.json'), 427, 400, [[], [7], []])
657-
]
658-
.forEach(function(testCase) {
659-
it('@gl trace type ' + testCase.label, function(done) {
660-
_run(testCase, done);
661-
});
662-
});
663-
664-
// The mapbox traces: use @noCI annotation cause they are usually too resource-intensive
665-
[
656+
testCase('splom', require('@mocks/splom_lower.json'), 427, 400, [[], [7], []]),
666657
testCase('scattermapbox', require('@mocks/mapbox_0.json'), 650, 195, [[2], []], {},
667658
{ mapboxAccessToken: require('@build/credentials.json').MAPBOX_ACCESS_TOKEN })
668659
]
669660
.forEach(function(testCase) {
670-
it('@noCI trace type ' + testCase.label, function(done) {
661+
it('@noCI @gl trace type ' + testCase.label, function(done) {
671662
_run(testCase, done);
672663
});
673664
});

test/jasmine/tests/splom_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ describe('Test splom select:', function() {
15051505
.then(done);
15061506
});
15071507

1508-
it('@gl should behave correctly during select->dblclick->pan scenarios', function(done) {
1508+
it('@noCI @gl should behave correctly during select->dblclick->pan scenarios', function(done) {
15091509
var fig = Lib.extendDeep({}, require('@mocks/splom_0.json'));
15101510
fig.layout = {
15111511
width: 400,

test/jasmine/tests/streamtube_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ describe('Test streamtube interactions', function() {
295295
});
296296
});
297297

298-
describe('Test streamtube hover', function() {
298+
describe('@noCI Test streamtube hover', function() {
299299
var gd;
300300

301301
beforeEach(function() {

0 commit comments

Comments
 (0)