forked from AzuraCast/AzuraCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeception.yml
57 lines (53 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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: 1024M
error_level: "E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED"
extensions:
enabled:
- Codeception\Extension\RunFailed
modules:
coverage:
enabled: true
include:
- app/*
exclude:
# Loaded before tests
- app/bootstrap.php
- app/bootstrap/**.php
- app/src/App/Tests/Module.php
- app/src/App/Doctrine/EntityManagerFactory.php
# Not used in entire application
- app/**/*.conf.sample.php
- app/src/App/Crypto.php
- app/src/App/Messenger.php
- app/src/App/Forms/Element/Recaptcha.php
- app/src/App/Paginator/Doctrine.php
- app/src/App/Doctrine/Platform/*.php
- app/src/App/Doctrine/Paginate/*.php
# Used in application, but not used in tests
- app/src/AzuraCast/Radio/Frontend/ShoutCast2.php
- app/src/AzuraCast/Console/Command/*.php
- app/src/App/Doctrine/Logger/EchoSQL.php
- app/src/App/Session/Temporary.php
- app/src/App/Console/Command/*.php
- app/src/Entity/Fixture/*
- app/src/Entity/Migration/*
- app/locale/**/*
- app/locale/*
- app/templates/system/error_general.phtml
# Exceptions
- app/src/App/Exception.php
- app/src/App/Exception/*.php
- app/src/App/Mvc/ErrorHandler.php
# Used in application, but not detected properly by the coverage tool :(
- app/config/*.conf.php
- app/config/**/*.conf.php
- app/**/routes.php