mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
30 lines
864 B
INI
30 lines
864 B
INI
[pytest]
|
|
DJANGO_SETTINGS_MODULE = bookwyrm.settings
|
|
python_files = tests.py test_*.py *_tests.py
|
|
addopts = --cov=bookwyrm --cov-config=.coveragerc
|
|
markers =
|
|
integration: marks tests as requiring external resources (deselect with '-m "not integration"')
|
|
|
|
env =
|
|
LANGUAGE_CODE = en-US
|
|
SECRET_KEY = beepbeep
|
|
DEBUG = false
|
|
USE_HTTPS = true
|
|
DOMAIN = your.domain.here
|
|
PORT = 4242
|
|
ALLOWED_HOSTS = your.domain.here
|
|
BOOKWYRM_DATABASE_BACKEND = postgres
|
|
MEDIA_ROOT = images/
|
|
CELERY_BROKER =
|
|
REDIS_BROKER_PORT = 6379
|
|
REDIS_BROKER_PASSWORD = beep
|
|
REDIS_ACTIVITY_PORT = 6379
|
|
REDIS_ACTIVITY_PASSWORD = beep
|
|
USE_DUMMY_CACHE = true
|
|
FLOWER_PORT = 8888
|
|
EMAIL_HOST = smtp.mailgun.org
|
|
EMAIL_PORT = 587
|
|
EMAIL_HOST_USER =
|
|
EMAIL_HOST_PASSWORD =
|
|
EMAIL_USE_TLS = true
|
|
ENABLE_PREVIEW_IMAGES = false
|