-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeception.yml
46 lines (42 loc) · 1019 Bytes
/
codeception.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
actor_suffix: Tester
paths:
# where the modules stored
tests: tests
output: tests/_output
log: tests/_output
# directory for fixture data
data: tests/_data
# directory for custom modules (helpers)
support: tests/_support
envs: tests/_envs
settings:
# name of bootstrap that will be used
# each bootstrap file should be
# inside a suite directory.
bootstrap: _bootstrap.php
colors: true
# Tests (especially functional) can take a lot of memory
# We set a high limit for them by default.
memory_limit: 1024M
extensions:
enabled:
- Codeception\Extension\RunFailed
- Codeception\Extension\Logger
coverage:
enabled: true
low_limit: 30
high_limit: 60
include:
- app/controllers
- app/models
- app/functions.php
# Global modules configuration.
modules:
config:
Db:
dsn: 'mysql:host=localhost;dbname=jream_unit_test'
user: 'root'
password: 'root'
dump: resources/__setup/schema.sql
populate: true
cleanup: true