(tmp_path)
| 224 | |
| 225 | |
| 226 | def test_find_dotenv_no_file_raise(tmp_path): |
| 227 | (root, leaf) = prepare_file_hierarchy(tmp_path) |
| 228 | os.chdir(str(leaf)) |
| 229 | |
| 230 | with pytest.raises(IOError): |
| 231 | dotenv.find_dotenv(raise_error_if_not_found=True, usecwd=True) |
| 232 | |
| 233 | |
| 234 | def test_find_dotenv_no_file_no_raise(tmp_path): |
nothing calls this directly
no test coverage detected