test.ini 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. [server:main]
  16. use = egg:gearbox#wsgiref
  17. host = 127.0.0.1
  18. port = 8080
  19. [app:main]
  20. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  21. use = config:development.ini
  22. [app:main_without_authn]
  23. use = main
  24. skip_authentication = True
  25. [app:ldap]
  26. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  27. auth_type = ldap
  28. ldap_url = ldap://localhost:3333
  29. ldap_base_dn = dc=directory,dc=fsf,dc=org
  30. ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
  31. ldap_bind_pass = toor
  32. ldap_ldap_naming_attribute = uid
  33. ldap_user_attributes = mail=email,pubname=display_name
  34. ldap_tls = False
  35. ldap_group_enabled = False
  36. use = config:development.ini
  37. [app:radicale]
  38. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  39. use = config:development.ini
  40. # Add additional test specific configuration options as necessary.