mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 11:32:38 +02:00
This runs the tests for different python versions, with different working sets, and also run a linter.
24 lines
632 B
Python
24 lines
632 B
Python
import os
|
|
|
|
from umap.settings.base import * # pylint: disable=W0614,W0401
|
|
|
|
SECRET_KEY = "justfortests"
|
|
COMPRESS_ENABLED = False
|
|
FROM_EMAIL = "test@test.org"
|
|
EMAIL_BACKEND = "django.core.mail.backends.locmem.EmailBackend"
|
|
|
|
if os.environ.get("GITHUB_ACTIONS", False) == "true":
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.contrib.gis.db.backends.postgis",
|
|
"NAME": "postgres",
|
|
"USER": "postgres",
|
|
"HOST": "localhost",
|
|
"PORT": 5432,
|
|
"PASSWORD": "postgres",
|
|
}
|
|
}
|
|
|
|
PASSWORD_HASHERS = [
|
|
"django.contrib.auth.hashers.MD5PasswordHasher",
|
|
]
|