Skip to content

Commit cd3d175

Browse files
committed
remove mapbox from compare_pixels_test
1 parent c37f748 commit cd3d175

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

test/image/compare_pixels_test.js

+1-16
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,11 @@ argv._.forEach(function(pattern) {
6363
var blacklist = [
6464
'map_angles',
6565
'map_stamen-style',
66-
'mapbox_stamen-style',
67-
'mapbox_custom-style',
68-
'mapbox_density0-legend',
69-
'mapbox_osm-style',
7066
];
7167

7268
if(virtualWebgl) {
7369
allMockList = allMockList.filter(function(a) {
74-
return a.slice(0, 2) === 'gl' || a.slice(0, 6) === 'mapbox';
70+
return a.slice(0, 2) === 'gl';
7571
});
7672
}
7773

@@ -108,23 +104,12 @@ for(var i = 0; i < allMockList.length; i++) {
108104
// skip blacklist
109105
if(blacklist.indexOf(mockName) !== -1) continue;
110106

111-
var isMapbox = mockName.substr(0, 7) === 'mapbox_';
112-
113-
// We have to skip mapbox since Aug 2024
114-
// See https://github.com/plotly/plotly.js/issues/7075
115-
if(isMapbox) continue;
116-
117107
var flakyMap = [
118108
// more flaky
119109
'map_density0-legend',
120110
'map_osm-style',
121111
'map_predefined-styles1',
122112
'map_predefined-styles2',
123-
124-
'mapbox_angles',
125-
'mapbox_layers',
126-
'mapbox_custom-style',
127-
'mapbox_geojson-attributes'
128113
].indexOf(mockName) !== -1;
129114

130115
var otherFlaky = [

0 commit comments

Comments
 (0)