AzuraCast/codeception.yml
Buster "Silver Eagle" Neece 854cb93261
Architecture change: Integrate common AzuraCore code (#944)
* Update composer.json/lock
* Update CLI console commands
* All AzuraCore refactors except folder moves.
* MVP for all core functionality.
* Working unit/functional tests
* Remove DB dump from util/, replace with direct migration.
* Update AzuraCore, define testing mode earlier.
2018-11-12 10:59:15 -06:00

32 lines
691 B
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:
- src/*
exclude:
# Used in application, but not used in tests
- src/Radio/Frontend/ShoutCast2.php
- src/Console/Command/*.php
- src/Console/Command/*.php
- src/Entity/Fixture/*
- src/Entity/Migration/*
# Exceptions
- src/Exception/*.php
- src/Mvc/ErrorHandler.php