Skip to content

Commit 924e9e3

Browse files
committed
again?
1 parent 06934b7 commit 924e9e3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/ember/scripts/run_tests.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# running compatibilty tests takes ~15 min on a 2019 2.6 GHz 6-Core Intel i7 16" MacBook Pro w 32 GB of RAM, vs ~25 sec
22
# for the regular tests
33
echo $TRAVIS
4-
if [[ $TRAVIS ]]; then echo "$TRAVIS"; else echo "no TRAVIS"; fi
4+
if $TRAVIS; then echo "$TRAVIS"; else echo "no TRAVIS"; fi
5+
if [[ $TRAVIS ]]; then echo "$TRAVIS"; else echo "no [[ ]] TRAVIS"; fi
56
if [[ -n $TRAVIS ]]; then echo "-n $TRAVIS"; else echo "no -n TRAVIS"; fi
67

78
if [[ $TRAVIS || $GITHUB_ACTIONS ]]; then
89
echo "In CI - running tests against multiple versions of Ember"
9-
yarn npm-run-all lint:* test:*
10+
# yarn npm-run-all lint:* test:*
1011
else
1112
echo "Tests running locally - will only run tests against default version of Ember"
1213
# only run the basic ember tests
13-
yarn npm-run-all lint:* test:ember
14+
# yarn npm-run-all lint:* test:ember
1415
fi

0 commit comments

Comments
 (0)