Add testing to .dockerignore and update composer test scripts

This commit is contained in:
Fabián Gonzalo Artur de la Villarmois
2026-03-29 18:10:44 +13:00
parent fbf121553f
commit a48fd7bb11
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -5,5 +5,6 @@ www/storage/logs/*
www/storage/framework/cache/*
www/storage/framework/sessions/*
www/storage/framework/views/*
www/storage/framework/testing
www/public/storage
www/public/games
+2 -1
View File
@@ -50,7 +50,8 @@
],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test"
"@php artisan test",
"@php ./vendor/bin/pint --test"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
View File