gpt4 book ai didi

python - 如何使用 pytest tmpdir.as_cwd 获取临时路径

转载 作者:太空宇宙 更新时间:2023-11-04 04:14:42 24 4
gpt4 key购买 nike

在 python 测试函数中

def test_something(tmpdir):
with tmpdir.as_cwd() as p:
print('here', p)
print(os.getcwd())

我原以为 pos.getcwd() 会给出相同的结果。但实际上,p 指向测试文件的目录,而 os.getcwd() 指向预期的临时文件。

这是预期的行为吗?

最佳答案

查看 py.path.as_cwd 的文档:

return context manager which changes to current dir during the managed "with" context. On __enter__ it returns the old dir.

因此您观察到的行为是正确的:

def test_something(tmpdir):
print('current directory where you are before changing it:', os.getcwd())
# the current directory will be changed now
with tmpdir.as_cwd() as old_dir:
print('old directory where you were before:', old_dir)
print('current directory where you are now:', os.getcwd())
print('you now returned to the old current dir', os.getcwd())

请记住,您示例中的 p 不是您要更改到的"new"当前目录,而是您更改的“旧”目录。

关于python - 如何使用 pytest tmpdir.as_cwd 获取临时路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55658866/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com