tankist / codeception-profiler
Codeception extension used to profile unit tests
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/tankist/codeception-profiler
Requires
- php: >=5.4
- codeception/codeception: ~2.1
Requires (Dev)
- codeception/specify: *
- codeclimate/php-test-reporter: dev-master
This package is not auto-updated.
Last update: 2025-10-26 00:34:59 UTC
README
Codeception extension used to profile unit tests
Minimum Requirements
- Codeception 2.1.0
- PHP 5.4
Installation using Composer
$ composer require tankist/codeception-profiler
Be sure to enable the extension in codeception.yml as shown in
configuration below.
Configuration
All enabling and configuration is done in codeception.yml.
Enabling Profiler with defaults
extensions: enabled: - Codeception\Extension\Profiler
Enabling Profiler with alternate settings
extensions: enabled: - Codeception\Extension\Profiler config: Codeception\Extension\Profiler: warningTimeLimit: 5 errorTimeLimit: 30
Available options
warningTimeLimit: {warningTimeLimit}- If test execution time will exceed this limit test will be marked as
warning(yellow) - Default:
1
- If test execution time will exceed this limit test will be marked as
errorTimeLimit: {errorTimeLimit}- If test execution time will exceed this limit test will be marked as
error(red) - Default:
10
- If test execution time will exceed this limit test will be marked as