From f4e518cd3fa9267f045976f119563205c7369add Mon Sep 17 00:00:00 2001 From: bnu Date: Tue, 26 May 2015 16:10:34 +0900 Subject: [PATCH] rename codeception.yml --- codeception.dist.yml | 11 +++++++++++ codeception.yml | 19 ------------------- 2 files changed, 11 insertions(+), 19 deletions(-) create mode 100644 codeception.dist.yml delete mode 100644 codeception.yml diff --git a/codeception.dist.yml b/codeception.dist.yml new file mode 100644 index 000000000..8ea80dc2b --- /dev/null +++ b/codeception.dist.yml @@ -0,0 +1,11 @@ +actor: Tester +paths: + tests: tests + log: tests/_output + data: tests/_data + helpers: tests/_support +settings: + bootstrap: _bootstrap.php + colors: true + memory_limit: 1024M +error_level: "E_ALL & ~E_WARNING & ~E_STRICT & ~E_DEPRECATED & ~E_NOTICE" diff --git a/codeception.yml b/codeception.yml deleted file mode 100644 index 7f760718c..000000000 --- a/codeception.yml +++ /dev/null @@ -1,19 +0,0 @@ -actor: Tester -paths: - tests: tests - log: tests/_output - data: tests/_data - helpers: tests/_support -settings: - bootstrap: _bootstrap.php - colors: true - memory_limit: 1024M -modules: - config: - Db: - dsn: 'mysql:host=127.0.0.1;dbname=xe_test' - user: 'root' - password: 'root' - populate: false - cleanup: false -error_level: "E_STRICTE_ALL & ~E_WARNING & ~E_STRICT & ~E_DEPRECATED & ~E_NOTICE"