aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2025-06-05 16:23:07 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2025-06-05 16:23:07 +0200
commit580911dc89d25d9657b81cab59cbdee653bdf1c6 (patch)
treee5081e6d6ce0586ad8f343fa6997b5add4095c99
parentbf340a576fcaf17cf0608b9e6d56f8200e758f59 (diff)
downloadnextcloud-server-580911dc89d25d9657b81cab59cbdee653bdf1c6.tar.gz
nextcloud-server-580911dc89d25d9657b81cab59cbdee653bdf1c6.zip
chore: Disable appstore from integration tests
This avoids spamming the appstore server and getting banned from CI runs Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rwxr-xr-xbuild/integration/run.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh
index cbd3cceb3d1..30dd0646b10 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -18,6 +18,8 @@ HIDE_OC_LOGS=$2
INSTALLED=$($OCC status | grep installed: | cut -d " " -f 5)
if [ "$INSTALLED" == "true" ]; then
+ # Disable appstore to avoid spamming from CI
+ $OCC config:system:set appstoreenabled --value=false --type=boolean
# Disable bruteforce protection because the integration tests do trigger them
$OCC config:system:set auth.bruteforce.protection.enabled --value false --type bool
# Disable rate limit protection because the integration tests do trigger them