Using parameter placeholders in codeception.yml
I'm setting up Codeception's Db module and would like to use the parameters from my Symfony 2's parameters.yml file. Basically something like this: paths: tests: tests log: tests/_log data: tests/_data helpers: tests/_helpers settings: bootstrap: _bootstrap.php suite_class: \PHPUnit_Framework_TestSuite colors: true memory_limit: 1024M log: true modules: config: Symfony2: app_path: 'app' var_path: 'app' environment: 'test' Db: dsn: "mysql:host='%test_database_host%';dbname='%test_database_name%'" user: "%test_database_user%" password: "%test_database_password%" dump: tests/_data/test_data.sql