1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-12 16:42:08 +02:00
php-e107/codeception.yml
Deltik eed4b6b10e
Reenforced proper module access
\Helper\DelayedDb public methods shouldn't be used as Actor methods
2018-02-19 15:17:31 -06:00

35 lines
954 B
YAML

paths:
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
actor_suffix: Tester
settings:
bootstrap: _bootstrap.php
coverage:
enabled: true
include:
- e107/*.php
- e107/**/*.php
params:
- lib/config.php
extensions:
enabled:
- Codeception\Extension\RunFailed
modules:
enabled:
- \Helper\DeployerFactory:
secrets:
cpanel:
enabled: '%cpanel.enabled%'
hostname: '%cpanel.hostname%'
username: '%cpanel.username%'
password: '%cpanel.password%'
- \Helper\DelayedDb:
dsn: 'mysql:host=%manual.db.host%;port=%manual.db.port%;dbname=%manual.db.dbname%'
user: '%manual.db.user%'
password: '%manual.db.password%'
populate: true
dump: 'tests/_data/e107_v2.1.8.sample.sql'