PeerTube/server/tests/api/travis-1.sh

11 lines
476 B
Bash
Raw Normal View History

2019-04-25 07:46:02 +00:00
#!/usr/bin/env sh
set -eu
2019-04-26 06:50:52 +00:00
checkParamFiles=$(find server/tests/api/check-params -type f | grep -v index.ts | xargs echo)
notificationsFiles=$(find server/tests/api/notifications -type f | grep -v index.ts | xargs echo)
searchFiles=$(find server/tests/api/search -type f | grep -v index.ts | xargs echo)
2019-04-25 07:46:02 +00:00
2019-05-15 13:37:31 +00:00
MOCHA_PARALLEL=true mocha-parallel-tests --max-parallel $1 --timeout 5000 --exit --require ts-node/register --bail \
$notificationsFiles $searchFiles $checkParamFiles