Dump logs on test failure

This commit is contained in:
Marcus Moore 2024-10-28 10:24:35 -07:00
parent 86d784bd59
commit 5c49716129
No known key found for this signature in database
3 changed files with 12 additions and 0 deletions

View file

@ -77,3 +77,7 @@ jobs:
DB_PORT: ${{ job.services.mysql.ports[3306] }} DB_PORT: ${{ job.services.mysql.ports[3306] }}
DB_USERNAME: root DB_USERNAME: root
run: php artisan test run: php artisan test
- name: Test failure
if: ${{ failure() }}
run: docker exec "$PROJECT_NAME-php-fpm" cat storage/logs/laravel.log

View file

@ -75,3 +75,7 @@ jobs:
DB_USERNAME: snipeit DB_USERNAME: snipeit
DB_PASSWORD: password DB_PASSWORD: password
run: php artisan test run: php artisan test
- name: Test failure
if: ${{ failure() }}
run: docker exec "$PROJECT_NAME-php-fpm" cat storage/logs/laravel.log

View file

@ -59,3 +59,7 @@ jobs:
env: env:
DB_CONNECTION: sqlite_testing DB_CONNECTION: sqlite_testing
run: php artisan test run: php artisan test
- name: Test failure
if: ${{ failure() }}
run: docker exec "$PROJECT_NAME-php-fpm" cat storage/logs/laravel.log