forked from linslin/Yii2-Curl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeception.yml
34 lines (34 loc) · 904 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
actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
coverage:
enabled: true
include:
- Curl.php
bootstrap: _bootstrap.php
settings:
colors: true
memory_limit: 1024M
extensions:
enabled:
- \Codeception\Extension\Phiremock
- \Codeception\Extension\RunFailed
config:
\Codeception\Extension\Phiremock:
listen: 127.0.0.1:18080 # defaults to 0.0.0.0:8086
bin_path: vendor/bin # defaults to codeception_dir/../vendor/bin
debug: true # defaults to false
start_delay: 1 # default to 0
suites:
- unit
- acceptance
- functional
modules:
enabled:
- Phiremock:
host: 127.0.0.1 # Defaults to localhost
port: 18080 # Defaults to 8086