SuiteCRM-Core/codeception.dist.yml
Dillon-Brown a267325698 Update codeception namespaces
- Refactor codeception test namespaces
- Remove local config files in favor of dist
- Update test environment with doctrine and nelmio configurations

Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
2021-03-30 19:22:32 +01:00

29 lines
598 B
YAML

namespace: App\Tests
actor_suffix: Tester
paths:
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
settings:
memory_limit: 16000M
# Disable for faster test execution
lint: true
colors: true
backup_globals: true
report_useless_tests: true
disallow_test_output: true
# Significantly slows down test execution when true
be_strict_about_changes_to_global_state: false
extensions:
enabled:
- Codeception\Extension\RunFailed
params:
- .env
coverage:
enabled: true
include:
- core/*
exclude:
- core/app/*
bootstrap: bootstrap.php