pytest.ini 822 B

12345678910111213141516171819202122232425262728
  1. [pytest]
  2. DJANGO_SETTINGS_MODULE = bookwyrm.settings
  3. python_files = tests.py test_*.py *_tests.py
  4. addopts = --cov=bookwyrm --cov-config=.coveragerc
  5. markers =
  6. integration: marks tests as requiring external resources (deselect with '-m "not integration"')
  7. env =
  8. LANGUAGE_CODE = en-US
  9. SECRET_KEY = beepbeep
  10. DEBUG = false
  11. USE_HTTPS = true
  12. DOMAIN = your.domain.here
  13. BOOKWYRM_DATABASE_BACKEND = postgres
  14. MEDIA_ROOT = images/
  15. CELERY_BROKER = ""
  16. REDIS_BROKER_PORT = 6379
  17. REDIS_BROKER_PASSWORD = beep
  18. REDIS_ACTIVITY_PORT = 6379
  19. REDIS_ACTIVITY_PASSWORD = beep
  20. USE_DUMMY_CACHE = true
  21. FLOWER_PORT = 8888
  22. EMAIL_HOST = "smtp.mailgun.org"
  23. EMAIL_PORT = 587
  24. EMAIL_HOST_USER = ""
  25. EMAIL_HOST_PASSWORD = ""
  26. EMAIL_USE_TLS = true
  27. ENABLE_PREVIEW_IMAGES = false