Skip to content

Commit

Permalink
Merge pull request #6705 from plotly/reduce-flakiness
Browse files Browse the repository at this point in the history
reduce flakiness on CI
  • Loading branch information
archmoj committed Aug 11, 2023
2 parents 0249840 + a4a69d5 commit 27932d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/jasmine/tests/mapbox_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ describe('mapbox plots', function() {
.then(done, done.fail);
}, LONG_TIMEOUT_INTERVAL);

it('@gl should respond drag / scroll / double-click interactions', function(done) {
it('@noCI @gl should respond drag / scroll / double-click interactions', function(done) {
var relayoutCnt = 0;
var doubleClickCnt = 0;
var relayoutingCnt = 0;
Expand Down Expand Up @@ -1409,7 +1409,7 @@ describe('mapbox plots', function() {
.then(done, done.fail);
}, LONG_TIMEOUT_INTERVAL);

it('@gl should respect scrollZoom config option', function(done) {
it('@noCI @gl should respect scrollZoom config option', function(done) {
var mockCopy2 = Lib.extendDeep({}, mock);
mockCopy2.config = {scrollZoom: false};

Expand Down
4 changes: 2 additions & 2 deletions test/jasmine/tests/transition_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ describe('Plotly.react transitions:', function() {
.then(done, done.fail);
});

it('@flaky should only transition the layout when both traces and layout have animatable changes by default', function(done) {
it('@noCI should only transition the layout when both traces and layout have animatable changes by default', function(done) {
var data = [{y: [1, 2, 1]}];
var layout = {
transition: {duration: 10},
Expand Down Expand Up @@ -790,7 +790,7 @@ describe('Plotly.react transitions:', function() {
.then(done, done.fail);
});

it('@flaky should transition layout when one or more axis auto-ranged value changed', function(done) {
it('@noCI should transition layout when one or more axis auto-ranged value changed', function(done) {
var data = [{y: [1, 2, 1]}];
var layout = {transition: {duration: 10}};

Expand Down

0 comments on commit 27932d6

Please sign in to comment.