本文整理汇总了Python中dexy.wrapper.Wrapper.setup_dexy_dirs方法的典型用法代码示例。如果您正苦于以下问题:Python Wrapper.setup_dexy_dirs方法的具体用法?Python Wrapper.setup_dexy_dirs怎么用?Python Wrapper.setup_dexy_dirs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dexy.wrapper.Wrapper
的用法示例。
在下文中一共展示了Wrapper.setup_dexy_dirs方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: reset_command
# 需要导入模块: from dexy.wrapper import Wrapper [as 别名]
# 或者: from dexy.wrapper.Wrapper import setup_dexy_dirs [as 别名]
def reset_command(
artifactsdir=Wrapper.DEFAULT_ARTIFACTS_DIR, # location of directory in which to store artifacts
logsdir=Wrapper.DEFAULT_LOG_DIR # location of directory in which to store logs
):
"""
Empty the artifacts and logs directories.
"""
wrapper = Wrapper(**locals())
wrapper.load_config()
wrapper.remove_dexy_dirs()
wrapper.setup_dexy_dirs()
示例2: test_wrapper_run
# 需要导入模块: from dexy.wrapper import Wrapper [as 别名]
# 或者: from dexy.wrapper.Wrapper import setup_dexy_dirs [as 别名]
def test_wrapper_run():
with tempdir():
wrapper = Wrapper()
wrapper.setup_dexy_dirs()
d1 = Doc("abc.txt|outputabc", contents="these are the contents", wrapper=wrapper)
d2 = Doc("hello.txt|outputabc", contents="these are more contents", wrapper=wrapper)
assert d1.state == 'setup'
assert d2.state == 'setup'
wrapper.docs = [d1, d2]
wrapper.run()
assert d1.state == 'complete'
assert d2.state == 'complete'
示例3: test_wrapper_setup
# 需要导入模块: from dexy.wrapper import Wrapper [as 别名]
# 或者: from dexy.wrapper.Wrapper import setup_dexy_dirs [as 别名]
def test_wrapper_setup():
with tempdir():
assert not os.path.exists('artifacts')
wrapper = Wrapper()
wrapper.setup_dexy_dirs()
assert os.path.exists('artifacts')