mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-10 19:57:15 +03:00
9a773b9d7b
* Use ruff in pre-commit * Add pyupgrade * Add isort * Add bugbear * Fix B015 Pointless comparison * Fix B026 * B018 false positive * Remove flake8 and isort config from setup.cfg * Remove black and flake8 from dev dependencies * Update black * Show list of fixes applied with autofix on * Fix typo * Add C4 flake8-comprehensions * Add ruff to dev dependencies * Fix up
31 lines
635 B
Python
31 lines
635 B
Python
import os
|
|
import sys
|
|
|
|
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, ROOT_PATH + "/examples/")
|
|
|
|
SECRET_KEY = 1
|
|
|
|
INSTALLED_APPS = [
|
|
"graphene_django",
|
|
"graphene_django.rest_framework",
|
|
"graphene_django.tests",
|
|
"examples.starwars",
|
|
]
|
|
|
|
DATABASES = {
|
|
"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": "django_test.sqlite"}
|
|
}
|
|
|
|
TEMPLATES = [
|
|
{
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
"DIRS": [],
|
|
"APP_DIRS": True,
|
|
}
|
|
]
|
|
|
|
GRAPHENE = {"SCHEMA": "graphene_django.tests.schema_view.schema"}
|
|
|
|
ROOT_URLCONF = "graphene_django.tests.urls"
|