AzuraCast/codeception.yml
2016-10-22 15:47:07 -05:00

47 lines
No EOL
1.3 KiB
YAML

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/library/App/Tests/Module.php
- app/library/App/Doctrine/EntityManagerFactory.php
# Not used in entire application
- app/library/App/Crypto.php
- app/library/App/Messenger
- app/library/App/Forms/Element/Recaptcha.php
- app/library/App/Paginator/Doctrine.php
- app/library/App/Doctrine/Type/*.php
- app/library/App/Doctrine/Platform/*.php
- app/library/App/Doctrine/Filter/*.php
- app/library/App/Doctrine/Paginate/*.php
- app/library/App/Radio/Frontend/Shoutcast*.php
# Used in application, but not used in tests
- app/library/App/Doctrine/Logger/EchoSQL.php
- app/library/App/Console/Command/*.php
- app/**/*.conf.sample.php
- app/models/Migration/*
- app/locale/**/*
- app/locale/*
# Used in application, but not detected properly by the coverage tool :(
- app/**/route.php
- app/**/*.conf.php