-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcodeception.yml
More file actions
40 lines (33 loc) · 789 Bytes
/
codeception.yml
File metadata and controls
40 lines (33 loc) · 789 Bytes
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
paths:
# where the modules stored
tests: tests
output: tests/_output
# directory for fixture data
data: tests/_data
# directory for custom modules (helpers)
support: tests/_support
envs: tests/_envs
# can be changed while bootstrapping project
actor_suffix: Tester
settings:
# Tests (especially functional) can take a lot of memory
# We set a high limit for them by default.
memory_limit: 1024M
modules:
enabled:
- PhpBrowser:
url: 'http://localhost'
curl:
CURLOPT_RETURNTRANSFER: true
extensions:
enabled:
- Codeception\Extension\RunFailed
# Get params from .env file
params:
- tests/.env.test
error_level: "E_ALL"
#coverage:
# enabled: true
# remote: false
# include:
# - src/*