forked from thirtybees/thirtybees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeception.yml
37 lines (37 loc) · 838 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
actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
settings:
bootstrap: _bootstrap.php
colors: true
memory_limit: 1280M
extensions:
enabled:
- Codeception\Extension\RunFailed
modules:
config:
Db:
dsn: 'mysql:host=thirty.bees;dbname=thirtybees'
user: 'root'
password: ''
populate: false
cleanup: false
reconnect: true
WebDriver:
url: 'http://thirty.bees:8888'
browser: phantomjs
window_size: 1920x1080
PhpBrowser:
url: 'http://thirty.bees:8888'
coverage:
enabled: true
remote: false
include:
- classes/*
- controllers/*
low_limit: 30
high_limit: 70