File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
# 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
2
2
# for the regular tests
3
3
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
5
6
if [[ -n $TRAVIS ]]; then echo " -n $TRAVIS " ; else echo " no -n TRAVIS" ; fi
6
7
7
8
if [[ $TRAVIS || $GITHUB_ACTIONS ]]; then
8
9
echo " In CI - running tests against multiple versions of Ember"
9
- yarn npm-run-all lint:* test:*
10
+ # yarn npm-run-all lint:* test:*
10
11
else
11
12
echo " Tests running locally - will only run tests against default version of Ember"
12
13
# only run the basic ember tests
13
- yarn npm-run-all lint:* test:ember
14
+ # yarn npm-run-all lint:* test:ember
14
15
fi
You can’t perform that action at this time.
0 commit comments