fix(nextcloud): show all issues in php tests

This commit is contained in:
2026-04-06 00:09:01 +03:00
parent a69ee802a6
commit ca85c41ef4
3 changed files with 6 additions and 6 deletions

View File

@@ -215,7 +215,7 @@ jobs:
- name: PHPUnit integration
if: steps.check_integration.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:integration
run: composer run test:integration -- --display-all-issues
- name: Print logs
if: always()
@@ -358,7 +358,7 @@ jobs:
- name: PHPUnit integration
if: steps.check_integration.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:integration
run: composer run test:integration -- --display-all-issues
- name: Print logs
if: always()

View File

@@ -199,7 +199,7 @@ jobs:
- name: PHPUnit
if: steps.check_phpunit.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:unit
run: composer run test:unit -- --display-all-issues
- name: Check PHPUnit integration script is defined
id: check_integration
@@ -215,7 +215,7 @@ jobs:
- name: PHPUnit integration
if: steps.check_integration.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:integration
run: composer run test:integration -- --display-all-issues
- name: Print logs
if: always()

View File

@@ -184,7 +184,7 @@ jobs:
- name: PHPUnit
if: steps.check_phpunit.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:unit
run: composer run test:unit -- --display-all-issues
- name: Check PHPUnit integration script is defined
id: check_integration
@@ -200,7 +200,7 @@ jobs:
- name: PHPUnit integration
if: steps.check_integration.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:integration
run: composer run test:integration -- --display-all-issues
- name: Print logs
if: always()