devinweb / laravel-test-parallel
a command to run your tests simultaneously across multiple processes to significantly reduce the time required to run the entire test suite.
Installs: 7 452
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 0
Open Issues: 2
Requires
- brianium/paratest: ^6.2
Requires (Dev)
- orchestra/testbench: ~3.8.0 || ^4.0 || ^5.0 || ^6.0
- phpunit/phpunit: ^9.5.1
This package is auto-updated.
Last update: 2024-10-19 23:28:14 UTC
README
As you may know laravel parallel testing is already available on laravel v8.x, but this feature not exitst on the old versions 5.x, 6.x and 7.x, So this package is here to fix this gap and enjoy the parallel testing.
It's based on brianium/paratest and implements the same logic that handle the testing command used in laravel, developed by Nuno Maduro.
Requirement
This package requires
"phpunit/phpunit": "^9.5.1"
To update your phpunit package you can add this dev dependency on your composer.json
{ ... "require-dev": { ..., "phpunit/phpunit": "^9.5.1" }, ... }
Then remove your composer.lock
file and tell the composer to install all the dependencies using composer install
.
Installation
You can install the package via composer:
composer require devinweb/laravel-test-parallel
This package will register itself automatically if your Laravel version 5.5+, through package auto-discovery.
Usage
To enjoy with the testing parallel run this command
php artisan test:parallel -p6
For more options you can run
php artisan test:parallel --help
Phpunit.xml
Make sure to update all <env .../>
to <server .../>
in your phpunit.xml file.