File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ set +o pipefail
6
6
7
7
ROOT=$( dirname $0 ) /..
8
8
EXIT_STATE=0
9
- MAX_AUTO_RETRY=1
9
+ MAX_AUTO_RETRY=0
10
10
11
11
log () {
12
12
echo -e " \n$1 "
@@ -55,6 +55,7 @@ case $1 in
55
55
56
56
SHARDS=($( node $ROOT /tasks/shard_jasmine_tests.js --limit=5 --tag=gl | circleci tests split) )
57
57
for s in ${SHARDS[@]} ; do
58
+ MAX_AUTO_RETRY=1
58
59
retry npm run test-jasmine -- " $s " --tags=gl --skip-tags=noCI --doNotFailOnEmptyTestSuite
59
60
done
60
61
@@ -67,6 +68,7 @@ case $1 in
67
68
SHARDS=($( node $ROOT /tasks/shard_jasmine_tests.js --limit=1 --tag=flaky | circleci tests split) )
68
69
69
70
for s in ${SHARDS[@]} ; do
71
+ MAX_AUTO_RETRY=5
70
72
retry npm run test-jasmine -- " $s " --tags=flaky --skip-tags=noCI
71
73
done
72
74
@@ -80,6 +82,7 @@ case $1 in
80
82
;;
81
83
82
84
image2)
85
+ MAX_AUTO_RETRY=5
83
86
retry npm run test-image -- --just-flaky
84
87
npm run test-export || EXIT_STATE=$?
85
88
exit $EXIT_STATE
You can’t perform that action at this time.
0 commit comments