socialpoint / parallel-phpunit
Parallel Test Cases Runner for PHPUnit
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 18 241
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 4
Forks: 2
Open Issues: 3
Language:Python
This package is not auto-updated.
Last update: 2022-02-28 19:33:41 UTC
README
Parallel Test Cases Runner for PHPUnit
Installation
Composer
To install with Composer, execute the following command inside your project:
composer require --dev socialpoint/parallel-phpunit
After installation, the binary can be found at vendor/bin/parallel-phpunit
Pip
parallel-phpunit can be installed via "pip", the Python package manager, with:
pip install parallel-phpunit
After installation, you can use executing parallel-phpunit
Usage
Usage is as follows:
parallel-phpunit [-h] [--max_concurrency MAX_CONCURRENCY] [--configuration CONFIGURATION] [--phpunit_bin PHPUNIT_BIN] [--test_suffix TEST_SUFFIX] [TestCases Dirs [TestCases Dirs ...]] positional arguments: TestCases Dirs Directories of test cases optional arguments: -h, --help show this help message and exit --max_concurrency MAX_CONCURRENCY Max TestCase processing concurrency (8 by default) --configuration CONFIGURATION, -c CONFIGURATION Read configuration from XML file --phpunit_bin PHPUNIT_BIN phpunit bin path --test_suffix TEST_SUFFIX phpunit test suffix (by default Test.php)