When running pytest on a plugin: RuntimeError: Model class baserow.contrib.builder.pages.models.Page doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS

Looks like I can make the issue go away by adding this in plugins/baserow_vocabai_plugin/backend/src/baserow_vocabai_plugin/config/settings/settings.py:

settings.INSTALLED_APPS += ["baserow.contrib.builder"]

After that, my tests run. I have no idea what i’m doing though. Maybe I should stop resisting and just learn Django once and for all !