aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-07-30 14:44:08 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-07-31 11:32:04 +0200
commit7abb5c5da1ed7c6945e81b9e3da0a14f623f69ea (patch)
treeb8b1aa1fe87b081bacd7013ffce4d11ad66b5192 /server/tests/api
parentb488ba1e26b803ac6c637e8b11bdd444ca4c803f (diff)
downloadPeerTube-7abb5c5da1ed7c6945e81b9e3da0a14f623f69ea.tar.gz
PeerTube-7abb5c5da1ed7c6945e81b9e3da0a14f623f69ea.tar.zst
PeerTube-7abb5c5da1ed7c6945e81b9e3da0a14f623f69ea.zip
Use parallel to run tests in parallel
Diffstat (limited to 'server/tests/api')
-rw-r--r--server/tests/api/ci-1.sh10
-rw-r--r--server/tests/api/ci-2.sh10
-rw-r--r--server/tests/api/ci-3.sh8
-rw-r--r--server/tests/api/ci-4.sh11
4 files changed, 0 insertions, 39 deletions
diff --git a/server/tests/api/ci-1.sh b/server/tests/api/ci-1.sh
deleted file mode 100644
index faa440785..000000000
--- a/server/tests/api/ci-1.sh
+++ /dev/null
@@ -1,10 +0,0 @@
1#!/usr/bin/env sh
2
3set -eu
4
5checkParamFiles=$(find server/tests/api/check-params -type f | grep -v index.ts | xargs echo)
6notificationsFiles=$(find server/tests/api/notifications -type f | grep -v index.ts | xargs echo)
7searchFiles=$(find server/tests/api/search -type f | grep -v index.ts | xargs echo)
8
9MOCHA_PARALLEL=true npm run mocha -- --timeout 30000 --exit --require ts-node/register --require tsconfig-paths/register --bail \
10 $notificationsFiles $searchFiles $checkParamFiles
diff --git a/server/tests/api/ci-2.sh b/server/tests/api/ci-2.sh
deleted file mode 100644
index 016df1cfc..000000000
--- a/server/tests/api/ci-2.sh
+++ /dev/null
@@ -1,10 +0,0 @@
1#!/usr/bin/env sh
2
3set -eu
4
5serverFiles=$(find server/tests/api/server -type f | grep -v index.ts | xargs echo)
6usersFiles=$(find server/tests/api/users -type f | grep -v index.ts | xargs echo)
7
8MOCHA_PARALLEL=true npm run mocha -- --parallel --jobs $1 --timeout 30000 --exit \
9 --require ts-node/register --require tsconfig-paths/register --bail \
10 $serverFiles $usersFiles
diff --git a/server/tests/api/ci-3.sh b/server/tests/api/ci-3.sh
deleted file mode 100644
index ae5bb735a..000000000
--- a/server/tests/api/ci-3.sh
+++ /dev/null
@@ -1,8 +0,0 @@
1#!/usr/bin/env sh
2
3set -eu
4
5videosFiles=$(find server/tests/api/videos -type f | grep -v index.ts | xargs echo)
6
7npm run mocha -- --timeout 30000 --exit --require ts-node/register --require tsconfig-paths/register --bail \
8 $videosFiles
diff --git a/server/tests/api/ci-4.sh b/server/tests/api/ci-4.sh
deleted file mode 100644
index 4998de364..000000000
--- a/server/tests/api/ci-4.sh
+++ /dev/null
@@ -1,11 +0,0 @@
1#!/usr/bin/env sh
2
3set -eu
4
5activitypubFiles=$(find server/tests/api/moderation -type f | grep -v index.ts | xargs echo)
6redundancyFiles=$(find server/tests/api/redundancy -type f | grep -v index.ts | xargs echo)
7activitypubFiles=$(find server/tests/api/activitypub -type f | grep -v index.ts | xargs echo)
8
9TS_NODE_FILES=true MOCHA_PARALLEL=true npm run mocha -- --parallel --jobs $1 --timeout 30000 --exit \
10 --require ts-node/register --require tsconfig-paths/register --bail \
11 $redundancyFiles $activitypubFiles