Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c1ef691

Browse files
authoredJul 4, 2019
Merge pull request #3987 from plotly/mapbox-v1
[email protected] + improvements
2 parents d75e956 + dfa4ec7 commit c1ef691

File tree

87 files changed

+40421
-668
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+40421
-668
lines changed
 

‎.circleci/test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ case $1 in
4545
set_tz
4646

4747
SUITE=$(circleci tests glob "$ROOT/test/jasmine/tests/*" | circleci tests split)
48-
npm run test-jasmine -- $SUITE --skip-tags=gl,noCI,flaky --showSkipped || EXIT_STATE=$?
48+
npm run test-jasmine -- $SUITE --skip-tags=gl,noCI,flaky || EXIT_STATE=$?
4949

5050
exit $EXIT_STATE
5151
;;
@@ -55,7 +55,7 @@ case $1 in
5555

5656
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --limit=5 --tag=gl | circleci tests split))
5757
for s in ${SHARDS[@]}; do
58-
retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --showSkipped
58+
retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --doNotFailOnEmptyTestSuite
5959
done
6060

6161
exit $EXIT_STATE
@@ -67,7 +67,7 @@ case $1 in
6767
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --limit=1 --tag=flaky | circleci tests split))
6868

6969
for s in ${SHARDS[@]}; do
70-
retry npm run test-jasmine -- "$s" --tags=flaky --skip-tags=noCI --showSkipped
70+
retry npm run test-jasmine -- "$s" --tags=flaky --skip-tags=noCI
7171
done
7272

7373
exit $EXIT_STATE

‎lib/choroplethmapbox.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* Copyright 2012-2019, Plotly, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
module.exports = require('../src/traces/choroplethmapbox');

0 commit comments

Comments
 (0)
Please sign in to comment.