codeception.yml 800 B

123456789101112131415161718192021222324252627282930313233
  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. settings:
  13. bootstrap: _bootstrap.php
  14. colors: false
  15. memory_limit: 1024M
  16. extensions:
  17. enabled:
  18. - Codeception\Extension\RunFailed
  19. - Codeception\Extension\Phiremock
  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. startDelay: 1 # default to 0
  26. modules:
  27. config:
  28. Db:
  29. dsn: ''
  30. user: ''
  31. password: ''
  32. dump: tests/_data/dump.sql