本文整理汇总了Python中metashare.test_utils.clean_storage函数的典型用法代码示例。如果您正苦于以下问题:Python clean_storage函数的具体用法?Python clean_storage怎么用?Python clean_storage使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了clean_storage函数的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: tearDown
def tearDown(self):
"""
Clean up the test
"""
test_utils.clean_resources_db()
test_utils.clean_storage()
test_utils.clean_user_db()
开发者ID:JuliBakagianni,项目名称:CEF-ELRC,代码行数:7,代码来源:test_view.py
示例2: tearDown
def tearDown(self):
test_utils.clean_resources_db()
test_utils.clean_storage()
test_utils.clean_user_db()
super(EditorTest, self).tearDown()
self.assertEqual([], self.verification_errors)
开发者ID:jvivaldi,项目名称:META-SHARE,代码行数:7,代码来源:test_editor.py
示例3: tearDownClass
def tearDownClass(cls):
"""
Clean up the test
"""
test_utils.clean_resources_db()
test_utils.clean_storage()
test_utils.clean_user_db()
LOGGER.info("finished '{}' tests".format(cls.__name__))
开发者ID:ELDAELRA,项目名称:META-SHARE-3.1.1,代码行数:8,代码来源:test_search.py
示例4: tearDown
def tearDown(self):
"""
Clean up the test
"""
test_utils.clean_resources_db()
test_utils.clean_storage()
test_utils.clean_user_db()
test_utils.set_index_active(True)
开发者ID:ELDAELRA,项目名称:META-SHARE-3.1.1,代码行数:8,代码来源:test_status_workflow.py
示例5: tearDown
def tearDown(self):
"""
Clean up the test
"""
test_utils.clean_resources_db()
test_utils.clean_storage()
settings.MAX_VIEW_INTERVAL = self.max_view_interval_backup
settings.MAX_DOWNLOAD_INTERVAL = self.max_download_interval_backup
开发者ID:MiltosD,项目名称:CEFELRC,代码行数:8,代码来源:tests.py
示例6: tearDown
def tearDown(self):
"""
Clean up the test
"""
try:
test_utils.clean_resources_db()
except:
pass
test_utils.clean_storage()
开发者ID:ELDAELRA,项目名称:META-SHARE-3.1.1,代码行数:9,代码来源:tests.py
示例7: tearDownClass
def tearDownClass(cls):
"""
Clean up the test
"""
LOGGER.info("finished '{}' tests".format(cls.__name__))
# disable indexing during import
test_utils.set_index_active(False)
test_utils.clean_resources_db()
test_utils.clean_storage()
OBJECT_XML_CACHE.clear()
# enable indexing
test_utils.set_index_active(True)
# update index
update_index.Command().handle(using=[settings.TEST_MODE_NAME,])
开发者ID:ELDAELRA,项目名称:META-SHARE-3.1.1,代码行数:18,代码来源:test_view.py
示例8: tearDownClass
def tearDownClass(cls):
"""
Clean up the test
"""
LOGGER.info("finished '{}' tests".format(cls.__name__))
# disable indexing during import
test_utils.set_index_active(False)
test_utils.clean_resources_db()
test_utils.clean_storage()
OBJECT_XML_CACHE.clear()
# enable indexing
test_utils.set_index_active(True)
# update index
from django.core.management import call_command
call_command('rebuild_index', interactive=False, using=TEST_MODE_NAME)
开发者ID:JuliBakagianni,项目名称:CEF-ELRC,代码行数:19,代码来源:test_view.py
示例9: tearDownClass
def tearDownClass(cls):
# delete content of storage folder
test_utils.clean_storage()
test_utils.set_index_active(True)
LOGGER.info("finished '{}' tests".format(cls.__name__))
开发者ID:Atala,项目名称:META-SHARE,代码行数:5,代码来源:test_persistence.py
示例10: tearDown
def tearDown(self):
test_utils.clean_resources_db()
test_utils.clean_storage()
test_utils.clean_user_db()
super(ExampleSeleniumTest, self).tearDown()
开发者ID:ELDAELRA,项目名称:META-SHARE-3.1.1,代码行数:6,代码来源:test_example.py
示例11: tearDownClass
def tearDownClass(cls):
test_utils.clean_resources_db()
test_utils.clean_storage()
test_utils.clean_user_db()
set_index_active(True)
LOGGER.info("finished '{}' tests".format(cls.__name__))
开发者ID:jvivaldi,项目名称:META-SHARE,代码行数:6,代码来源:tests.py
注:本文中的metashare.test_utils.clean_storage函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论