We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc5be2 commit 365b546Copy full SHA for 365b546
.travis.yml
@@ -43,7 +43,7 @@ matrix:
43
- env: TEST_SUITE=lint
44
45
script:
46
- - travis_retry (killall -q peertube || true) && npm run travis -- "$TEST_SUITE"
+ - travis_retry npm run travis -- "$TEST_SUITE"
47
48
after_failure:
49
- cat test1/logs/all-logs.log
scripts/travis.sh
@@ -7,6 +7,8 @@ if [ $# -eq 0 ]; then
7
exit -1
8
fi
9
10
+killall -q peertube || true
11
+
12
if [ "$1" = "misc" ]; then
13
npm run build
14
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/client.ts server/tests/activitypub.ts \
0 commit comments