-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeception.yml.dist
42 lines (41 loc) · 1.02 KB
/
codeception.yml.dist
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
paths:
tests: tests
log: tests/_log
data: tests/_data
helpers: tests/_helpers
settings:
bootstrap: _bootstrap.php
suite_class: \PHPUnit_Framework_TestSuite
colors: true
memory_limit: 1024M
log: true
modules:
config:
Db:
dsn: 'mysql:host=%HOST%;dbname=%DATABASE%'
user: '%USER%'
password: '%PASSWORD%'
dump: tests/_data/dump.sql
cleanup: false
populate: false
PhpBrowser:
url: '%SITE_URL%'
WebDriver:
url: '%SITE_URL%'
browser: phantomjs
REST:
url: '%SITE_URL%'
coverage:
enabled: true
remote: false
whitelist:
include:
- src/*
exclude:
- src/*/*Bundle/Resources/*
- src/*/*Bundle/Tests/*
- src/*/*Bundle/Model/map/*
- src/*/*Bundle/Model/om/*
- src/*/*Bundle/Model/*/map/*
- src/*/*Bundle/Model/*/om/*
- src/*/*Bundle/Admin/*