From 3c107663724fd0e50c926f26258b9fb72b779161 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 4 Jul 2020 17:07:01 -0700 Subject: [PATCH] clean up txt file after tests --- features/environment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/features/environment.py b/features/environment.py index b0e208c0..cdc44998 100644 --- a/features/environment.py +++ b/features/environment.py @@ -7,6 +7,8 @@ CWD = os.getcwd() def clean_all_working_dirs(): + if os.path.exists("test.txt"): + os.remove("test.txt") for folder in ("configs", "journals", "cache"): working_dir = os.path.join("features", folder) if os.path.exists(working_dir):