codeception.yml 769 B

123456789101112131415161718192021222324252627282930313233343536
  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/*
  27. # blacklist:
  28. # include:
  29. # - assets/*
  30. # - config/*
  31. # - runtime/*
  32. # - vendor/*
  33. # - views/*
  34. # - web/*
  35. # - tests/*