test.ini 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. radicale.server.port = 15232
  13. radicale.client.port = 15232
  14. radicale.server.filesystem.folder = /tmp/tracim_tests_radicale_fs
  15. radicale.client.base_url.host = http://localhost:15232
  16. radicale.client.base_url.prefix = /
  17. email.notification.activated = false
  18. [server:main]
  19. use = egg:gearbox#wsgiref
  20. host = 127.0.0.1
  21. port = 8080
  22. [app:main]
  23. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  24. use = config:development.ini
  25. [app:main_without_authn]
  26. use = main
  27. skip_authentication = True
  28. [app:ldap]
  29. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  30. auth_type = ldap
  31. ldap_url = ldap://localhost:3333
  32. ldap_base_dn = dc=directory,dc=fsf,dc=org
  33. ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
  34. ldap_bind_pass = toor
  35. ldap_ldap_naming_attribute = uid
  36. ldap_user_attributes = mail=email,pubname=display_name
  37. ldap_tls = False
  38. ldap_group_enabled = False
  39. use = config:development.ini
  40. [app:nosmtp]
  41. resetpassword.smtp_host = localhost
  42. resetpassword.smtp_login = fake
  43. resetpassword.smtp_passwd = fake
  44. use = config:development.ini
  45. [app:radicale]
  46. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  47. use = config:development.ini
  48. # Add additional test specific configuration options as necessary.