It doesn’t seem to be possible to set the CWD programmatically, like with e.g. std::process::Command in the stdlib.
My use case is that I want to handle fs operations myself (since I need to do some specific stuff with creation/modification/etc. dates, creating git repos, setting extended attributes on files, etc.), and set the CWD once for a group of tests instead of in every TOML file.
It doesn’t seem to be possible to set the CWD programmatically, like with e.g.
std::process::Commandin the stdlib.My use case is that I want to handle fs operations myself (since I need to do some specific stuff with creation/modification/etc. dates, creating git repos, setting extended attributes on files, etc.), and set the CWD once for a group of tests instead of in every TOML file.