After noticing recent tests fail with messages like:
5 passing (2s)
Too long with no output (exceeded 10m0s)
Using a very basic (and unchanged script)
for MODULE in "${MODULES_TO_TEST[@]}"
do
echo "Testing ${MODULE}"
if [ -d "node_modules/${MODULE}/test" ]; then
cd node_modules/${MODULE}
# Inverse grep, ie, run all tests except tests that we should skip due to networking restrictions in CircleCI
mocha -i -g 'network|skip'
cd $ORIGINAL_DIR
fi
done
I’ve attempted to repeat a previous successful build and it’s failed. Ie, literally click a green build, repeat it, and the same thing happens - execution simply stops, with no failures, then a time out fails the build.
Any one know what’s happening or how to make Circle 2.0 work again?