Reduce concurrency for Node tests on Travis

Travis was killing dart2js and Node instances
This commit is contained in:
Natalie Weizenbaum 2018-02-01 19:17:41 -08:00
parent 0826d98d15
commit a8a4c8e124

View File

@ -71,9 +71,9 @@ script:
else
echo "${bold}Running Node tests against Node $(node --version).$none";
if [ "$DART_CHANNEL" = dev ]; then
pub run test -t node;
pub run test -j 2 -t node;
else
pub run test -x dart2 -t node;
pub run test -j 2 -x dart2 -t node;
fi
fi;
else