- Clone this repo, add upstream
git remote add upstream https://github.com/laravel/laravel
- Rebase the default branch
ddev-automated-test
onto the latest tag fromupstream
, resolve conflicts - Use the latest Laravel quickstart for this repo, do not commit
.ddev
:ddev config --project-type=laravel --docroot=public ddev start rm -rf .env composer.lock vendor ddev composer install ddev composer run-script post-root-package-install ddev composer run-script post-create-project-cmd git add .env composer.lock vendor -f
- Download
db.sql.tar.gz
from the latest release and runddev import-db --file=db.sql.tar.gz
- Run Laravel migrations
ddev php artisan migrate
- Export the db
mkdir -p .tarballs && ddev export-db --gzip=false --file=.tarballs/db.sql && tar -czf .tarballs/db.sql.tar.gz -C .tarballs db.sql
- Run
git push
, create a new release adding.tarballs/db.sql.tar.gz
as an asset - Update the URLs in
ddev/ddev
for the new release (e.g. if the old release was10.0.5.2
and the new release is11.0.1.1
, then search for this string in theddev/ddev
and replace it with11.0.1.1
) - Rerun the tests for Laravel
GOTEST_SHORT=9 make testfullsitesetup
forked from laravel/laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Automated testing example for Laravel
ddev/test-laravel
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Automated testing example for Laravel
Resources
Code of conduct
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Blade 60.8%
- PHP 38.4%
- Other 0.8%