File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ case $1 in
45
45
set_tz
46
46
47
47
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=$?
49
49
50
50
exit $EXIT_STATE
51
51
;;
@@ -55,7 +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
- 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
59
59
done
60
60
61
61
exit $EXIT_STATE
@@ -67,7 +67,7 @@ case $1 in
67
67
SHARDS=($( node $ROOT /tasks/shard_jasmine_tests.js --limit=1 --tag=flaky | circleci tests split) )
68
68
69
69
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
71
71
done
72
72
73
73
exit $EXIT_STATE
You can’t perform that action at this time.
0 commit comments