mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 07:50:08 +08:00
- 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>
29 lines
598 B
YAML
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
|