Run abuse-enabled tests across entire test suite, not just Projects

The abuseEnabled jobs previously only ran tests in Services/Projects,
missing the Account abuse test and any future abuseEnabled tests in
other services. Also rename jobs to "Abuse" for consistency.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
loks0n
2026-03-11 22:44:42 +00:00
co-authored by Claude Opus 4.6
parent 4cbe50193a
commit 7dfe44cb36
+6 -6
View File
@@ -387,7 +387,7 @@ jobs:
docker compose logs openruntimes-executor
e2e_abuse_enabled:
name: E2E Service Test (Abuse enabled)
name: E2E Service Test (Abuse)
runs-on: ubuntu-latest
needs: setup
permissions:
@@ -420,12 +420,12 @@ jobs:
docker compose pull --quiet --ignore-buildable
docker compose up -d --quiet-pull --wait
- name: Run Projects tests in dedicated table mode
- name: Run abuse-enabled tests in dedicated table mode
timeout-minutes: 15
run: >-
docker compose exec -T
-e _APP_E2E_RESPONSE_FORMAT="${{ github.event.inputs.response_format }}"
appwrite test /usr/src/code/tests/e2e/Services/Projects --group=abuseEnabled
appwrite test /usr/src/code/tests/e2e --group=abuseEnabled
- name: Failure Logs
if: failure()
@@ -436,7 +436,7 @@ jobs:
docker compose logs openruntimes-executor
e2e_abuse_enabled_shared_mode:
name: E2E Shared Mode Service Test (Abuse enabled)
name: E2E Shared Mode Service Test (Abuse)
runs-on: ubuntu-latest
needs: [ setup, check_database_changes ]
if: needs.check_database_changes.outputs.database_changed == 'true'
@@ -477,12 +477,12 @@ jobs:
docker compose pull --quiet --ignore-buildable
docker compose up -d --quiet-pull --wait
- name: Run Projects tests in ${{ matrix.tables-mode }} table mode
- name: Run abuse-enabled tests in ${{ matrix.tables-mode }} table mode
timeout-minutes: 15
run: >-
docker compose exec -T
-e _APP_E2E_RESPONSE_FORMAT="${{ github.event.inputs.response_format }}"
appwrite test /usr/src/code/tests/e2e/Services/Projects --group=abuseEnabled
appwrite test /usr/src/code/tests/e2e --group=abuseEnabled
- name: Failure Logs
if: failure()