7f5f4152a4
* Separated "Other Videos" section into a dedicated component/service I'm currently working on some proof-of-concepts for recommendation providers that could work with PeerTube to provide useful video suggestions to the user. As a first step, I want to have great clarity about how PeerTube, itself, will surface these videos to the user. With this branch, I'm refactoring the "recommendations" to make it easier to swap out different recommender implementations quickly. Stop recommender from including the video that's being watched. Ensure always 5 recommendations * Treat recommendations as a stream of values, rather than a single async value. * Prioritize readability over HTTP response size early-optimization. * Simplify pipe
41 lines
1.4 KiB
Bash
Executable file
41 lines
1.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "Need test suite argument."
|
|
exit -1
|
|
fi
|
|
|
|
killall -q peertube || true
|
|
|
|
if [ "$1" = "misc" ]; then
|
|
npm run build -- --light-fr
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/client.ts server/tests/activitypub.ts \
|
|
server/tests/feeds/index.ts
|
|
elif [ "$1" = "api" ]; then
|
|
npm run build:server
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index.ts
|
|
elif [ "$1" = "cli" ]; then
|
|
npm run build:server
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/cli/index.ts
|
|
elif [ "$1" = "api-1" ]; then
|
|
npm run build:server
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-1.ts
|
|
elif [ "$1" = "api-2" ]; then
|
|
npm run build:server
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-2.ts
|
|
elif [ "$1" = "api-3" ]; then
|
|
npm run build:server
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-3.ts
|
|
elif [ "$1" = "lint" ]; then
|
|
( cd client
|
|
npm run lint
|
|
)
|
|
elif [ "$1" = "jest" ]; then
|
|
( cd client
|
|
npm run test
|
|
)
|
|
|
|
npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"
|
|
fi
|