简体   繁体   中英

Does tmpdir in pytest create a file only when we write to it?

When I use fp = tmpdir.join("hello.txt") in pytest, does pytest actually create a file in my temp directory or it creates only when I write fp.write("hello") ?

No, pytest will not create the file until you actually write to it. Under the hood, as mentioned in the documentation, tmpdir uses py.path . When you call join it will lazily get the new path, meaning it does not exist until you actually write something to it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM