bookwyrm-mastodon/pytest.ini

28 lines
796 B
INI
Raw Normal View History

2020-11-08 15:14:57 -05:00
[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"')
2021-08-02 22:30:42 -04:00
env =
2022-01-09 15:04:45 -05:00
SECRET_KEY = beepbeep
2021-08-02 22:30:42 -04:00
DEBUG = false
2022-01-09 15:04:45 -05:00
USE_HTTPS = true
2021-08-02 22:30:42 -04:00
DOMAIN = your.domain.here
BOOKWYRM_DATABASE_BACKEND = postgres
MEDIA_ROOT = images/
CELERY_BROKER = ""
REDIS_BROKER_PORT = 6379
2022-01-09 15:04:45 -05:00
REDIS_BROKER_PASSWORD = beep
REDIS_ACTIVITY_PORT = 6379
REDIS_ACTIVITY_PASSWORD = beep
USE_DUMMY_CACHE = true
2021-08-02 22:30:42 -04:00
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