mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
29 lines
554 B
YAML
29 lines
554 B
YAML
actor: Tester
|
|
paths:
|
|
tests: tests
|
|
log: tests/_output
|
|
data: tests/_data
|
|
helpers: tests/_support
|
|
settings:
|
|
bootstrap: _bootstrap.php
|
|
colors: true
|
|
memory_limit: 1024M
|
|
modules:
|
|
config:
|
|
Db:
|
|
dsn: 'sqlite:tests/_data/testing.sqlite'
|
|
user: ''
|
|
password: ''
|
|
dump:
|
|
cleanup: false
|
|
populate: false
|
|
coverage:
|
|
enabled: true
|
|
remote: false
|
|
whitelist:
|
|
include:
|
|
- app/controllers/*
|
|
- app/models/*
|
|
- app/lib/FireflyIII/*
|
|
exclude:
|
|
- app/controllers/BaseController.php |