codeception.yml 734 B

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