Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-30 20:45:53 +0300
committerJoas Schilling <coding@schilljs.com>2022-10-07 11:46:10 +0300
commitd8e1075c49796e71f3b1fa04156782d2ddcdde53 (patch)
treea0fde73181c9ea7e12babf801501fe93e5ffca90 /.drone.jsonnet
parent3c648373e057896600bb0883a751f403855ed563 (diff)
Split chat/ integration tests in half
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.jsonnet')
-rw-r--r--.drone.jsonnet6
1 files changed, 3 insertions, 3 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet
index e5f1a1b9a..0234491b1 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -121,34 +121,34 @@ local PipelinePostgreSQL(test_set) = Pipeline(
[
PipelineSQLite("callapi"),
PipelineSQLite("chat"),
+ PipelineSQLite("chat-2"),
PipelineSQLite("command"),
PipelineSQLite("conversation"),
PipelineSQLite("conversation-2"),
PipelineSQLite("federation"),
PipelineSQLite("integration"),
- PipelineSQLite("reaction"),
PipelineSQLite("sharing"),
PipelineSQLite("sharing-2"),
PipelineMySQL("callapi"),
PipelineMySQL("chat"),
+ PipelineMySQL("chat-2"),
PipelineMySQL("command"),
PipelineMySQL("conversation"),
PipelineMySQL("conversation-2"),
PipelineMySQL("federation"),
PipelineMySQL("integration"),
- PipelineMySQL("reaction"),
PipelineMySQL("sharing"),
PipelineMySQL("sharing-2"),
PipelinePostgreSQL("callapi"),
PipelinePostgreSQL("chat"),
+ PipelinePostgreSQL("chat-2"),
PipelinePostgreSQL("command"),
PipelinePostgreSQL("conversation"),
PipelinePostgreSQL("conversation-2"),
PipelinePostgreSQL("federation"),
PipelinePostgreSQL("integration"),
- PipelinePostgreSQL("reaction"),
PipelinePostgreSQL("sharing"),
PipelinePostgreSQL("sharing-2"),
]