Add more logging info for test runners (#3112)

This commit is contained in:
Erik Arvidsson
2017-01-25 13:49:14 -08:00
committed by GitHub
parent edf8b55f26
commit 9689248028
+9 -1
View File
@@ -29,15 +29,23 @@ for d in ${GO_LIST}; do
fi
done
echo "== JS tests"
pushd ${NOMS_DIR}
python tools/run-all-js-tests.py
popd
echo "== JS tests done"
# The integration test only works after the node tests because the node tests sets up samples/js/node_modules
echo "== Integration tests"
pushd ${NOMS_DIR}/samples/js
go test ./...
go test -v ./...
popd
echo "== Integration tests done"
echo "== Python tests"
python -m unittest discover -p "*_test.py" -s $GOPATH/src/github.com/attic-labs/noms/tools
echo "== Python tests done"
echo "== Codecov upload"
bash <(curl -s https://codecov.io/bash) -t ${COVERALLS_TOKEN}
echo "== Codecov upload done"