forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeception.yml
43 lines (40 loc) · 1.08 KB
/
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
38
39
40
41
42
43
paths:
tests: tests
log: tests/log
data: tests/data
support: tests/support
envs: tests/envs
settings:
shuffle: true
bootstrap: _bootstrap.php
suite_class: \PHPUnit_Framework_TestSuite
colors: true
memory_limit: 1024M
log: true
lint: false
report_useless_tests: false
disallow_test_output: false
be_strict_about_changes_to_global_state: false
log_incomplete_skipped: false
modules:
config:
AMQP:
host: 'localhost'
port: '5672'
username: 'guest'
password: 'guest'
vhost: '/'
queues: [queue1, queue2]
extensions:
enabled: [Codeception\Extension\RunFailed]
coverage:
enabled: true
include:
- src/Codeception/Command/*
- src/Codeception/Module/Symfony1.php
- src/Codeception/Module/Symfony2.php
- src/Codeception/Module/Doctrine1.php
- src/Codeception/Module/Doctrine2.php
- src/Codeception/Module/Kohana.php
- src/Codeception/Module/SocialEngine.php
- src/Codeception/Module/ZF1.php