forked from spryker-sdk/spryk-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeception.yml
More file actions
84 lines (77 loc) · 2.52 KB
/
codeception.yml
File metadata and controls
84 lines (77 loc) · 2.52 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
namespace: SprykerSdkTest
paths:
# paths should not end with slashes, see https://github.com/spryker-sdk/spryk-src/pull/47
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
bootstrap: bootstrap.php
settings:
suite_class: \PHPUnit\Framework\TestSuite
colors: true
memory_limit: 2048M
log: true
coverage:
enabled: true
remote: true
whitelist:
include:
- 'src/*.php'
suites:
Spryk:
bootstrap: _bootstrap.php
path: SprykerSdkTest/Spryk/Model
actor: SprykTester
extensions:
enabled:
- Codeception\Extension\RunFailed
modules:
enabled:
- Symfony:
part: services
app_path: 'src'
kernel_class: 'SprykerSdk\Kernel'
environment: 'test'
- SprykerSdkTest\Module\SprykHelper:
withTestSpryks: true
withTestTemplates: true
- SprykerSdkTest\Module\TransferModule
Console:
bootstrap: _bootstrap.php
path: SprykerSdkTest/Spryk/Console
actor: SprykConsoleTester
extensions:
enabled:
- Codeception\Extension\RunFailed
modules:
enabled:
- Symfony:
part: services
app_path: 'src'
kernel_class: 'SprykerSdk\Kernel'
environment: 'test'
- SprykerSdkTest\Module\SprykHelper:
withTestSpryks: true
withTestTemplates: true
- SprykerSdkTest\Module\AssertionModule
Integration:
bootstrap: _bootstrap.php
path: SprykerSdkTest/Spryk/Integration
actor: SprykIntegrationTester
extensions:
enabled:
- Codeception\Extension\RunFailed
modules:
enabled:
- Symfony:
part: services
app_path: 'src'
kernel_class: 'SprykerSdk\Kernel'
environment: 'test'
- SprykerSdkTest\Module\SprykHelper
- SprykerSdkTest\Module\AssertionModule
- SprykerSdkTest\Module\IntegrationModule
- SprykerSdkTest\Module\TransferModule
- SprykerSdkTest\Module\YmlModule
- SprykerSdkTest\Module\SchemaModule