Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reduce flakiness on CI #6705

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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