pytest中的tmpdir是否仅在我们写入文件时才创建文件?
Does tmpdir in pytest create a file only when we write to it?
当我在 pytest 中使用 fp = tmpdir.join("hello.txt")
时,pytest 实际上是在我的临时目录中创建一个文件,还是仅在我编写 fp.write("hello")
时才创建?
当我在 pytest 中使用 fp = tmpdir.join("hello.txt")
时,pytest 实际上是在我的临时目录中创建一个文件,还是仅在我编写 fp.write("hello")
时才创建?