Drupal investigation

codeception.yml 800B

1234567891011121314151617181920212223242526272829303132333435363738
  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. cleanup: false
  16. # To enable code coverage:
  17. #coverage:
  18. # #c3_url: http://localhost:8080/index-test.php/
  19. # enabled: true
  20. # #remote: true
  21. # #remote_config: '../codeception.yml'
  22. # whitelist:
  23. # include:
  24. # - models/*
  25. # - controllers/*
  26. # - commands/*
  27. # - mail/*
  28. # blacklist:
  29. # include:
  30. # - assets/*
  31. # - config/*
  32. # - runtime/*
  33. # - vendor/*
  34. # - views/*
  35. # - web/*
  36. # - tests/*