diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-06-05 16:23:07 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-06-05 16:23:07 +0200 |
commit | 580911dc89d25d9657b81cab59cbdee653bdf1c6 (patch) | |
tree | e5081e6d6ce0586ad8f343fa6997b5add4095c99 | |
parent | bf340a576fcaf17cf0608b9e6d56f8200e758f59 (diff) | |
download | nextcloud-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-x | build/integration/run.sh | 2 |
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 |