當前位置: 首頁>>代碼示例>>Python>>正文


Python apps.set_installed_apps方法代碼示例

本文整理匯總了Python中django.apps.apps.set_installed_apps方法的典型用法代碼示例。如果您正苦於以下問題:Python apps.set_installed_apps方法的具體用法?Python apps.set_installed_apps怎麽用?Python apps.set_installed_apps使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在django.apps.apps的用法示例。


在下文中一共展示了apps.set_installed_apps方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: enable

# 需要導入模塊: from django.apps import apps [as 別名]
# 或者: from django.apps.apps import set_installed_apps [as 別名]
def enable(self):
        # Keep this code at the beginning to leave the settings unchanged
        # in case it raises an exception because INSTALLED_APPS is invalid.
        if 'INSTALLED_APPS' in self.options:
            try:
                apps.set_installed_apps(self.options['INSTALLED_APPS'])
            except Exception:
                apps.unset_installed_apps()
                raise
        override = UserSettingsHolder(settings._wrapped)
        for key, new_value in self.options.items():
            setattr(override, key, new_value)
        self.wrapped = settings._wrapped
        settings._wrapped = override
        for key, new_value in self.options.items():
            setting_changed.send(sender=settings._wrapped.__class__,
                                 setting=key, value=new_value, enter=True) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:19,代碼來源:utils.py

示例2: setup_databases

# 需要導入模塊: from django.apps import apps [as 別名]
# 或者: from django.apps.apps import set_installed_apps [as 別名]
def setup_databases(self, **kwargs):
        # Look for test models
        test_apps = set()
        for package in self.test_packages:
            if find_spec('.models', package):
                test_apps.add(package)
        # Add test apps with models to INSTALLED_APPS that aren't already there
        new_installed = settings.INSTALLED_APPS + tuple(ta for ta in test_apps if ta not in settings.INSTALLED_APPS)
        apps.set_installed_apps(new_installed)
        return super().setup_databases(**kwargs) 
開發者ID:ashleywaite,項目名稱:django-more,代碼行數:12,代碼來源:test_runner.py

示例3: test_PG_EXTRA_SEARCH_PATHS

# 需要導入模塊: from django.apps import apps [as 別名]
# 或者: from django.apps.apps import set_installed_apps [as 別名]
def test_PG_EXTRA_SEARCH_PATHS(self):
        del apps.all_models['django_tenants']
        c = connection.cursor()
        c.execute('DROP SCHEMA {0} CASCADE; CREATE SCHEMA {0};'.format(
            get_public_schema_name()
        ))
        apps.set_installed_apps(['customers', 'django_tenants']) 
開發者ID:django-tenants,項目名稱:django-tenants,代碼行數:9,代碼來源:test_settings.py


注:本文中的django.apps.apps.set_installed_apps方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。