refactor: replace isort, black and flake8 with ruff (#1346)
Some checks are pending
Docs - build & deploy / docs (push) Waiting to run
Run tests / build (ubuntu-latest, 3.10) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.11) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.12) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.8) (push) Waiting to run
Run tests / test_sampleproject (3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.9) (push) Waiting to run
Run tests / build (windows-latest, 3.10) (push) Waiting to run
Run tests / build (windows-latest, 3.11) (push) Waiting to run
Run tests / build (windows-latest, 3.12) (push) Waiting to run
Run tests / build (windows-latest, 3.13) (push) Waiting to run
Run tests / build (windows-latest, 3.8) (push) Waiting to run
Run tests / build (windows-latest, 3.9) (push) Waiting to run
Run tests / test_docs (3.13) (push) Waiting to run

This commit is contained in:
Juro Oravec 2025-09-10 14:06:53 +02:00 committed by GitHub
parent 5279fd372a
commit f100cc1836
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
128 changed files with 3076 additions and 2599 deletions

View file

@ -20,7 +20,7 @@ PARAMETRIZE_CONTEXT_BEHAVIOR = (
def setup_test_config(
components: Optional[Dict] = None,
extra_settings: Optional[Dict] = None,
):
) -> None:
if settings.configured:
return
@ -38,16 +38,16 @@ def setup_test_config(
"builtins": [
"django_components.templatetags.component_tags",
],
'loaders': [
"loaders": [
# Default Django loader
'django.template.loaders.filesystem.Loader',
"django.template.loaders.filesystem.Loader",
# Including this is the same as APP_DIRS=True
'django.template.loaders.app_directories.Loader',
"django.template.loaders.app_directories.Loader",
# Components loader
'django_components.template_loader.Loader',
"django_components.template_loader.Loader",
],
},
}
},
],
"COMPONENTS": {
**(components or {}),
@ -57,7 +57,7 @@ def setup_test_config(
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": ":memory:",
}
},
},
"SECRET_KEY": "secret",
"ROOT_URLCONF": "django_components.urls",
@ -67,7 +67,7 @@ def setup_test_config(
**{
**default_settings,
**(extra_settings or {}),
}
},
)
django.setup()