当前位置: 首页>>代码示例>>Python>>正文


Python Tags.compatibility方法代码示例

本文整理汇总了Python中django.core.checks.Tags.compatibility方法的典型用法代码示例。如果您正苦于以下问题:Python Tags.compatibility方法的具体用法?Python Tags.compatibility怎么用?Python Tags.compatibility使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.core.checks.Tags的用法示例。


在下文中一共展示了Tags.compatibility方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_cache_compatibility

# 需要导入模块: from django.core.checks import Tags [as 别名]
# 或者: from django.core.checks.Tags import compatibility [as 别名]
def test_cache_compatibility(self):
        compatible_cache = {
            'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        }
        incompatible_cache = {
            'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
            'LOCATION': 'cache_table'
        }

        with self.settings(CACHES={'default': compatible_cache,
                                   'secondary': incompatible_cache}):
            errors = run_checks(tags=[Tags.compatibility])
            self.assertListEqual(errors, [])

        warning001 = Warning(
            'Cache backend %r is not supported by django-cachalot.'
            % 'django.core.cache.backends.db.DatabaseCache',
            hint='Switch to a supported cache backend '
                 'like Redis or Memcached.',
            id='cachalot.W001')
        with self.settings(CACHES={'default': incompatible_cache}):
            errors = run_checks(tags=[Tags.compatibility])
            self.assertListEqual(errors, [warning001])
        with self.settings(CACHES={'default': compatible_cache,
                                   'secondary': incompatible_cache},
                           CACHALOT_CACHE='secondary'):
            errors = run_checks(tags=[Tags.compatibility])
            self.assertListEqual(errors, [warning001]) 
开发者ID:noripyt,项目名称:django-cachalot,代码行数:30,代码来源:settings.py

示例2: ready

# 需要导入模块: from django.core.checks import Tags [as 别名]
# 或者: from django.core.checks.Tags import compatibility [as 别名]
def ready(self):
        @register(Tags.compatibility, Tags.database)
        def check_if_postgresql(app_configs, **kwargs):
            if get_postgresql_connections():
                return []
            return [Error('You must use a PostgreSQL database '
                          'to use PostgreSQL search.',
                          id='wagtail.contrib.postgres_search.E001')]

        set_weights()

        from .models import IndexEntry
        IndexEntry.add_generic_relations() 
开发者ID:wagtail,项目名称:wagtail,代码行数:15,代码来源:apps.py

示例3: register_checks

# 需要导入模块: from django.core.checks import Tags [as 别名]
# 或者: from django.core.checks.Tags import compatibility [as 别名]
def register_checks():
    register(Tags.compatibility)(check_variables) 
开发者ID:adamchainz,项目名称:django-mysql,代码行数:4,代码来源:checks.py

示例4: ready

# 需要导入模块: from django.core.checks import Tags [as 别名]
# 或者: from django.core.checks.Tags import compatibility [as 别名]
def ready(self):
        from django.core.checks import register, Tags
        register(django_tus_config_check, Tags.compatibility, deploy=False) 
开发者ID:alican,项目名称:django-tus,代码行数:5,代码来源:apps.py


注:本文中的django.core.checks.Tags.compatibility方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。