diff --git a/PART_1/clean_env b/PART_1/clean_env index f4626d6669e8453ee70156292e89d7474465dd52..c48bbc461ee5c553f122f2d4b822f17cda1cf3f1 100755 --- a/PART_1/clean_env +++ b/PART_1/clean_env @@ -6,7 +6,7 @@ import shutil def rm_test_dir(): cwd = os.getcwd() for filename in os.listdir(cwd): - if not (filename.endswith("_env") or filename.endswith("_script")): + if not (filename.endswith("_env") or filename.endswith("_script") or filename.endswith(".job")): if os.path.isfile(filename): os.remove(filename) else: