Skipping de-initialization on CI because it fails on CircleCI

This commit is contained in:
rzadp 2019-05-20 11:24:03 +02:00
parent 26898f1889
commit f9c3f2dbad

@ -21,6 +21,12 @@ docker-compose run -d -p 3002:3000 ui-erc20-native npm start
yarn mocha -b ./test.js
rc=$?
if [ $CI ]
then
exit $rc
fi
ps | grep node | grep -v grep | awk '{print "kill " $1}' | sh
docker-compose down
exit $rc