codeception.yml 904 B

1234567891011121314151617181920212223242526272829303132333435
  1. actor: Tester
  2. paths:
  3. tests: tests
  4. log: tests/_output
  5. data: tests/_data
  6. support: tests/_support
  7. envs: tests/_envs
  8. coverage:
  9. enabled: true
  10. include:
  11. - Curl.php
  12. bootstrap: _bootstrap.php
  13. settings:
  14. colors: true
  15. memory_limit: 1024M
  16. extensions:
  17. enabled:
  18. - \Codeception\Extension\Phiremock
  19. - \Codeception\Extension\RunFailed
  20. config:
  21. \Codeception\Extension\Phiremock:
  22. listen: 127.0.0.1:18080 # defaults to 0.0.0.0:8086
  23. bin_path: vendor/bin # defaults to codeception_dir/../vendor/bin
  24. debug: true # defaults to false
  25. start_delay: 1 # default to 0
  26. suites:
  27. - unit
  28. - acceptance
  29. - functional
  30. modules:
  31. enabled:
  32. - Phiremock:
  33. host: 127.0.0.1 # Defaults to localhost
  34. port: 18080 # Defaults to 8086