Skip to content

Commit 8241bc8

Browse files
committed
reduced retries to 2 and 3 - marked one test as flaky
1 parent 5395282 commit 8241bc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ case $1 in
5454
set_tz
5555

5656
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --tag=gl | circleci tests split))
57-
MAX_AUTO_RETRY=3
57+
MAX_AUTO_RETRY=2
5858
for s in ${SHARDS[@]}; do
5959
retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --showSkipped
6060
done
@@ -66,7 +66,7 @@ case $1 in
6666
set_tz
6767

6868
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --tag=flaky | circleci tests split))
69-
MAX_AUTO_RETRY=5
69+
MAX_AUTO_RETRY=3
7070
for s in ${SHARDS[@]}; do
7171
retry npm run test-jasmine -- "$s" --tags=flaky --skip-tags=noCI --showSkipped
7272
done

test/jasmine/tests/sankey_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ describe('sankey tests', function() {
11281128
.then(done);
11291129
});
11301130

1131-
it('should persist the position of every nodes after drag in attributes nodes.(x|y)', function(done) {
1131+
it('@flaky should persist the position of every nodes after drag in attributes nodes.(x|y)', function(done) {
11321132
mockCopy.data[0].arrangement = arrangement;
11331133
var move = [50, -50];
11341134
var nodes;

0 commit comments

Comments
 (0)