File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 -- doNotFailOnEmptyTestSuite
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
You can’t perform that action at this time.
0 commit comments