Remove log file.

- It was really only for debugging.
- The log would be redundant when eris outputs the log, when run
  without a tty.
This commit is contained in:
Andrew Hamilton 2020-04-25 15:18:43 +10:00
parent 41e7c72ded
commit 310451ae4d
2 changed files with 1 additions and 9 deletions

View file

@ -222,7 +222,7 @@ class MainTestCase(unittest.TestCase):
with contextlib.redirect_stdout(io.StringIO()):
__main__.main(root_path, loop, worker_count=2,
is_being_tested=True)
for file_name in ["summary.pickle", "creation_time", "log",
for file_name in ["summary.pickle", "creation_time",
"foo-metadata", "foo-contents"]:
self.assertTrue(os.path.exists(".eris/" + file_name))
self.assertEqual(_mount_total(), mount_total)