Import cannot be run synchronously in management command
A significant part of the import logic resides inside the Celery task, and the management command always calls .delay
on it, so it only ever queues imports in the background.
We once decided that imports triggered by management commands should be run synchronously by default, with an option to instead delay the job. See AlekSIS-App-Untis#29 (closed)