os.unlink(filepath)
filepaths = [join(_my_dir, "other", "{}.jsonlines".format(x)) for x in ["test_string_ids", "test_string_ids_df"]]
for filepath in filepaths:
if exists(filepath):
os.unlink(filepath)
def _create_empty_file(filetype):
filepath = join(_my_dir, "other", "empty.{}".format(filetype))
with open(filepath, "w"):
pass