We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650e100 commit 7502d90Copy full SHA for 7502d90
.circleci/test.sh
@@ -45,7 +45,8 @@ case $1 in
45
set_tz
46
47
SUITE=$(circleci tests glob "$ROOT/test/jasmine/tests/*" | circleci tests split)
48
- npm run test-jasmine -- $SUITE --skip-tags=gl,noCI,flaky || EXIT_STATE=$?
+ MAX_AUTO_RETRY=2
49
+ retry npm run test-jasmine -- $SUITE --skip-tags=gl,noCI,flaky || EXIT_STATE=$?
50
51
exit $EXIT_STATE
52
;;
@@ -55,7 +56,7 @@ case $1 in
55
56
57
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --limit=5 --tag=gl | circleci tests split))
58
for s in ${SHARDS[@]}; do
- MAX_AUTO_RETRY=1
59
60
retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --doNotFailOnEmptyTestSuite
61
done
62
0 commit comments