cleatsquad/module-parallel-tests-plus

Magento 2 module that enhances the dev:tests:run CLI command by enabling ParaTest parallel execution using --processes and --runner options.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 0

Forks: 0

Type:magento2-module

pkg:composer/cleatsquad/module-parallel-tests-plus

1.0.0 2025-11-22 12:12 UTC

This package is not auto-updated.

Last update: 2025-11-23 10:49:22 UTC


README

A Magento 2 extension that enhances the core dev:tests:run command by enabling parallel execution of developer tests using ParaTest.

This module significantly reduces execution time for static, unit, integration and integrity tests β€” with zero core overrides and full CI/CD compatibility.

Badges

Latest Stable Version Total Downloads Latest Unstable Version License

✨ Features

  • πŸš€ Parallel execution of Magento developer tests.
  • πŸ”§ Adds --processes to set worker count.
  • 🧡 Adds --runner option (default: WrapperRunner).
  • βš™ Fully compatible with Magento’s native --arguments passthrough.
  • 🧩 Supports all Magento test categories:
    • Static Test Suites (Default, Legacy, JS Exemplar)
    • Unit Tests (Framework + Integration Layer)
    • Integration Tests
    • Integrity Tests
  • πŸ›‘ Clean DI override of:
    Magento\Developer\Console\Command\DevTestsRunCommand
    
  • 🎯 No core hacks. Safe for production and CI pipelines.

πŸ“¦ Installation

You can install this module using Composer (recommended) or manually.

πŸ”Ή 1. Install via Composer (recommended)

Requires Packagist entry:

composer require cleatsquad/module-parallel-tests-plus --dev

Then upgrade Magento:

bin/magento setup:upgrade

πŸ”Ή 2. Manual installation (app/code)

Copy the module

app/code/CleatSquad/ParallelTestsPlus

Require ParaTest

composer require --dev brianium/paratest

Then upgrade Magento:

bin/magento setup:upgrade

πŸš€ Usage

Run static tests with 8 workers

bin/magento dev:tests:run static --processes=8

Run unit tests with 3 workers

bin/magento dev:tests:run unit --processes=3

Run all developer tests in parallel

bin/magento dev:tests:run all --processes=8

Use a custom runner

bin/magento dev:tests:run static --runner=WrapperRunner

Pass arguments to ParaTest/PHPUnit via Magento native --arguments

bin/magento dev:tests:run static -c "--filter=MyTest"

🀝 Support & Contributions

Issues and pull requests are welcome.

GitHub:
https://github.com/CleatSquad/module-parallel-tests-plus

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

πŸ™ Acknowledgements

This module is powered by the excellent ParaTest project:

➑️ https://github.com/paratestphp/paratest

ParaTest enables efficient parallel execution of PHPUnit tests and is essential to the performance improvements provided by this module.

Authors

  • Mohamed El Mrabet - Initial work - mimou78

πŸ“œ License

Released under the MIT License.
See the LICENSE.txt file for full details.

Β© 2025 - CleatSquad (https://cleatsquad.dev)