codeception.yml 571 B

123456789101112131415161718192021222324252627
  1. actor: Tester
  2. bootstrap: _bootstrap.php
  3. paths:
  4. tests: tests
  5. log: tests/_output
  6. data: tests/_data
  7. helpers: tests/_support
  8. settings:
  9. memory_limit: 1024M
  10. colors: true
  11. modules:
  12. config:
  13. Yii2:
  14. configFile: 'config/test.php'
  15. # To enable code coverage:
  16. #coverage:
  17. # #c3_url: http://localhost:8080/index-test.php/
  18. # enabled: true
  19. # #remote: true
  20. # #remote_config: '../codeception.yml'
  21. # whitelist:
  22. # include:
  23. # - models/*
  24. # - controllers/*
  25. # - commands/*
  26. # - mail/*