fix: honor tenant validation during plugin imports

This commit is contained in:
2026-08-05 13:28:01 +02:00
parent f558832cd2
commit 7a018807d8
11 changed files with 139 additions and 8 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ from django.conf import settings
if not settings.configured:
settings.configure(
DATABASES={"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}},
INSTALLED_APPS=["django.contrib.contenttypes"],
INSTALLED_APPS=["django.contrib.contenttypes", "netbox_export"],
SECRET_KEY="tests",
)