test.ini 619B

123456789101112131415161718192021222324252627
  1. #
  2. # pod - TurboGears 2 testing environment configuration
  3. #
  4. # The %(here)s variable will be replaced with the parent directory of this file
  5. #
  6. [DEFAULT]
  7. debug = true
  8. # Uncomment and replace with the address which should receive any error reports
  9. # email_to = you@yourdomain.com
  10. smtp_server = localhost
  11. error_email_from = turbogears@localhost
  12. [server:main]
  13. use = egg:gearbox#wsgiref
  14. host = 127.0.0.1
  15. port = 8080
  16. [app:main]
  17. sqlalchemy.url = sqlite:///:memory:
  18. use = config:development.ini
  19. [app:main_without_authn]
  20. use = main
  21. skip_authentication = True
  22. # Add additional test specific configuration options as necessary.