-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeception.yml
41 lines (41 loc) · 992 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
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=localhost;dbname=ixd_yourAppName_test'
user: 'yan_user_test'
password: 'yan_pwd_test'
dump: tests/_data/dump.sql
populate: true
cleanup: true
REST:
depends: Laravel5
url: http://yourAppName.local/api/v1/
Laravel5:
environment_file: .env.testing
coverage:
enabled: true
include:
- app/Console/*
- app/Events/*
- app/Http/*
- app/Jobs/*
- app/Listeners/*
- app/Models/*
- app/Policies/*
- app/Repositories/*
- app/Presenters/*
- app/Scopes/*
- app/Services/*
exclude:
- app/Http/routes.php
- app/Http/Kernel.php