do not depend on existence of /tmp directory

This commit is contained in:
Lincoln Stein 2023-08-01 00:41:35 -04:00
parent 13ef33ed64
commit 437f45a97f

@ -93,9 +93,10 @@ def test_root_resists_cwd():
conf.parse_args([])
assert conf.root_path == cwd
os.chdir(previous)
os.chdir("..")
assert conf.root_path == cwd
os.environ["INVOKEAI_ROOT"] = previous
os.chdir(cwd)
def test_type_coercion():