codeception.yml 955 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. paths:
  2. tests: tests
  3. log: tests/log
  4. data: tests/data
  5. support: tests/support
  6. envs: tests/envs
  7. settings:
  8. shuffle: true
  9. bootstrap: _bootstrap.php
  10. suite_class: \PHPUnit_Framework_TestSuite
  11. colors: true
  12. memory_limit: 1024M
  13. log: true
  14. lint: false
  15. modules:
  16. config:
  17. AMQP:
  18. host: 'localhost'
  19. port: '5672'
  20. username: 'guest'
  21. password: 'guest'
  22. vhost: '/'
  23. queues: [queue1, queue2]
  24. extensions:
  25. enabled: [Codeception\Extension\RunFailed]
  26. coverage:
  27. enabled: true
  28. include:
  29. - src/Codeception/Command/*
  30. - src/Codeception/Module/Symfony1.php
  31. - src/Codeception/Module/Symfony2.php
  32. - src/Codeception/Module/Doctrine1.php
  33. - src/Codeception/Module/Doctrine2.php
  34. - src/Codeception/Module/Kohana.php
  35. - src/Codeception/Module/SocialEngine.php
  36. - src/Codeception/Module/ZF1.php