-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeception.yml
More file actions
48 lines (42 loc) · 1.4 KB
/
codeception.yml
File metadata and controls
48 lines (42 loc) · 1.4 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
namespace: Tests
support_namespace: Support
# suite config
suites:
acceptance:
actor: AcceptanceTester
path: .
modules:
enabled:
- WebDriver:
url: https://localhost/pc_parts_assembler_app/public/index.php
browser: firefox
capabilities:
acceptInsecureCerts: true
- Db:
dsn: 'mysql:host=localhost;dbname=pcparts_test'
user: 'root'
password: ''
dump: 'tests/codeception/Support/Data/pcparts_test.sql'
#codecept populator and cleanup is too slow
cleanup: true # run populator before each test
populate: true # run populator before all test
# add Codeception\Step\Retry trait to AcceptanceTester to enable retries
step_decorators:
- Codeception\Step\ConditionalAssertion
- Codeception\Step\TryTo
- Codeception\Step\Retry
extensions:
enabled: [Codeception\Extension\RunFailed]
params:
- env
gherkin: []
# additional paths
paths:
tests: tests/codeception
output: tests/codeception/_output
data: tests/codeception/Support/Data
support: tests/codeception/Support
envs: tests/codeception/_envs
settings:
shuffle: false
lint: true