-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeception.yml.erb
45 lines (45 loc) · 1.26 KB
/
codeception.yml.erb
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
43
44
45
paths:
tests: ./codeception
log: ./codeception/_log
data: ./codeception/_data
helpers: ./codeception/_helpers
settings:
bootstrap: _bootstrap.php
suite_class: \PHPUnit_Framework_TestSuite
colors: true
memory_limit: 1024M
log: true
coverage:
enabled: true
whitelist:
include:
- ../components/*
- ../exceptions/*
- ../generated-classes/*
- ../models/*
- ../product-specific-dna/*
- ../traits/*
exclude:
- ../tests/*
- ../generated-classes/propel/models/Base/*
- ../generated-classes/propel/models/Map/*
- ../models/base/*
- ../models/metadata/*
params:
- env # load params from environment vars
modules:
config:
MailCatcher:
url: http://%MAILCATCHER_HOST%
port: %MAILCATCHER_SMTP_PORT%
<% if ENV.has_key? "SAUCELABS" and ENV['SAUCELABS'].to_s == "1" %>
extensions:
enabled:
- Codeception\Extension\SauceExtension
config:
Codeception\Extension\SauceExtension:
username: %SAUCE_USERNAME%
accesskey: %SAUCE_ACCESS_KEY%
build: %SAUCE_METADATA_BUILD%
tags: %SAUCE_METADATA_TAGS%
<% end %>