| 1234567891011121314151617181920212223242526272829303132333435 |
- actor: Tester
- paths:
- tests: tests
- log: tests/_output
- data: tests/_data
- support: tests/_support
- envs: tests/_envs
- coverage:
- enabled: true
- include:
- - Curl.php
- bootstrap: _bootstrap.php
- settings:
- colors: true
- memory_limit: 1024M
- extensions:
- enabled:
- - \Codeception\Extension\Phiremock
- - \Codeception\Extension\RunFailed
- config:
- \Codeception\Extension\Phiremock:
- listen: 127.0.0.1:18080 # defaults to 0.0.0.0:8086
- bin_path: vendor/bin # defaults to codeception_dir/../vendor/bin
- debug: true # defaults to false
- start_delay: 1 # default to 0
- suites:
- - unit
- - acceptance
- - functional
- modules:
- enabled:
- - Phiremock:
- host: 127.0.0.1 # Defaults to localhost
- port: 18080 # Defaults to 8086
|