# -*- coding: utf-8 -*- # Copyright (C) 2016-2018 Linaro Limited # # Author: Remi Duraffort # # This file is part of LAVA. # # LAVA is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License version 3 # as published by the Free Software Foundation # # LAVA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with LAVA. If not, see . from django.apps import AppConfig from django.conf import settings class LAVASchedulerConfig(AppConfig): name = "lava_scheduler_app" verbose_name = "lava_scheduler_app" def ready(self): import lava_scheduler_app.checks import lava_scheduler_app.signals