From d36d4c7f434047e764addf9f5cc40643090a5d5b Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Tue, 30 Dec 2025 11:19:19 -0300 Subject: [PATCH 1/2] fix: disable ratelimit at integration tests Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- .github/workflows/behat-mariadb.yml | 5 +++-- .github/workflows/behat-mysql.yml | 5 +++-- .github/workflows/behat-pgsql.yml | 5 +++-- .github/workflows/behat-sqlite.yml | 5 +++-- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/behat-mariadb.yml b/.github/workflows/behat-mariadb.yml index 06385e36a6..a664fe86d9 100644 --- a/.github/workflows/behat-mariadb.yml +++ b/.github/workflows/behat-mariadb.yml @@ -152,10 +152,11 @@ jobs: ./occ app:enable --force activity git clone --depth 1 -b main https://github.com/nextcloud/guests apps/guests ./occ app:enable --force guests - ./occ config:system:set mail_smtpport --value 1025 --type integer - ./occ config:system:set mail_smtphost --value mailhog ./occ config:system:set allow_local_remote_servers --value true --type boolean ./occ config:system:set auth.bruteforce.protection.enabled --value false --type boolean + ./occ config:system:set mail_smtphost --value mailhog + ./occ config:system:set mail_smtpport --value 1025 --type integer + ./occ config:system:set ratelimit.protection.enabled --value false --type boolean - name: Run behat working-directory: apps/${{ env.APP_NAME }}/tests/integration diff --git a/.github/workflows/behat-mysql.yml b/.github/workflows/behat-mysql.yml index 80ac35ddaf..19ce8fccb7 100644 --- a/.github/workflows/behat-mysql.yml +++ b/.github/workflows/behat-mysql.yml @@ -164,10 +164,11 @@ jobs: ./occ app:enable --force activity git clone --depth 1 -b main https://github.com/nextcloud/guests apps/guests ./occ app:enable --force guests - ./occ config:system:set mail_smtpport --value 1025 --type integer - ./occ config:system:set mail_smtphost --value mailhog ./occ config:system:set allow_local_remote_servers --value true --type boolean ./occ config:system:set auth.bruteforce.protection.enabled --value false --type boolean + ./occ config:system:set mail_smtphost --value mailhog + ./occ config:system:set mail_smtpport --value 1025 --type integer + ./occ config:system:set ratelimit.protection.enabled --value false --type boolean - name: Run behat working-directory: apps/${{ env.APP_NAME }}/tests/integration diff --git a/.github/workflows/behat-pgsql.yml b/.github/workflows/behat-pgsql.yml index ea24066458..8f8df76858 100644 --- a/.github/workflows/behat-pgsql.yml +++ b/.github/workflows/behat-pgsql.yml @@ -158,10 +158,11 @@ jobs: ./occ app:enable --force activity git clone --depth 1 -b main https://github.com/nextcloud/guests apps/guests ./occ app:enable --force guests - ./occ config:system:set mail_smtpport --value 1025 --type integer - ./occ config:system:set mail_smtphost --value mailhog ./occ config:system:set allow_local_remote_servers --value true --type boolean ./occ config:system:set auth.bruteforce.protection.enabled --value false --type boolean + ./occ config:system:set mail_smtphost --value mailhog + ./occ config:system:set mail_smtpport --value 1025 --type integer + ./occ config:system:set ratelimit.protection.enabled --value false --type boolean - name: Run behat working-directory: apps/${{ env.APP_NAME }}/tests/integration diff --git a/.github/workflows/behat-sqlite.yml b/.github/workflows/behat-sqlite.yml index ecde299cee..6354e61058 100644 --- a/.github/workflows/behat-sqlite.yml +++ b/.github/workflows/behat-sqlite.yml @@ -149,10 +149,11 @@ jobs: ./occ app:enable --force activity git clone --depth 1 -b main https://github.com/nextcloud/guests apps/guests ./occ app:enable --force guests - ./occ config:system:set mail_smtpport --value 1025 --type integer - ./occ config:system:set mail_smtphost --value mailhog ./occ config:system:set allow_local_remote_servers --value true --type boolean ./occ config:system:set auth.bruteforce.protection.enabled --value false --type boolean + ./occ config:system:set mail_smtphost --value mailhog + ./occ config:system:set mail_smtpport --value 1025 --type integer + ./occ config:system:set ratelimit.protection.enabled --value false --type boolean - name: Run behat working-directory: apps/${{ env.APP_NAME }}/tests/integration From 9ca7b9e31e6fe21bdf44be99d43de810afb8c63e Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Tue, 30 Dec 2025 11:22:16 -0300 Subject: [PATCH 2/2] chore: sort rows Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>