catch errors in cleanup script
This commit is contained in:
parent
42f4dbe7e1
commit
42fced747f
@ -12,7 +12,11 @@ test_logs=()
|
|||||||
# cleanup
|
# cleanup
|
||||||
rm -f logs/*
|
rm -f logs/*
|
||||||
echo "Cleaning up"
|
echo "Cleaning up"
|
||||||
./node_modules/.bin/mocha test/000-cleanup.js > "logs/000-cleanup.log" 2>&1
|
if ! ./node_modules/.bin/mocha test/000-cleanup.js > "logs/000-cleanup.log" 2>&1; then
|
||||||
|
echo "Cleanup script failed"
|
||||||
|
cat "logs/000-cleanup.log"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# run tests
|
# run tests
|
||||||
for t in "${tests[@]}"; do
|
for t in "${tests[@]}"; do
|
||||||
|
Loading…
Reference in New Issue
Block a user