codeception.yml 812 B

123456789101112131415161718192021222324252627282930313233343536
  1. actor: Tester
  2. paths:
  3. tests: tests
  4. log: tests/_output
  5. data: tests/_data
  6. helpers: tests/_support
  7. settings:
  8. bootstrap: _bootstrap.php
  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: '../tests/codeception.yml'
  21. # whitelist:
  22. # include:
  23. # - ../models/*
  24. # - ../controllers/*
  25. # - ../commands/*
  26. # - ../mail/*
  27. # blacklist:
  28. # include:
  29. # - ../assets/*
  30. # - ../config/*
  31. # - ../runtime/*
  32. # - ../vendor/*
  33. # - ../views/*
  34. # - ../web/*
  35. # - ../tests/*