Files
firefly-iii/codeception.yml

29 lines
568 B
YAML
Raw Normal View History

2014-11-26 21:31:12 +01:00
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:
2014-12-20 15:01:09 +01:00
dsn: 'sqlite:tests/_data/db.sqlite'
user: ''
password: ''
2014-12-20 15:01:09 +01:00
dump: tests/_data/dump.sql
cleanup: true
populate: true
coverage:
enabled: true
2014-12-16 06:48:53 +01:00
remote: false
2014-12-06 21:48:23 +01:00
whitelist:
include:
- app/controllers/*
2014-12-06 21:48:23 +01:00
- app/models/*
- app/lib/FireflyIII/*
exclude:
- app/controllers/BaseController.php