Skip to content
Snippets Groups Projects
Commit ca6b1276 authored by Ravi Tripathi's avatar Ravi Tripathi
Browse files

Adding README file in the excluded list in clean_env script

parent 62d2c3f3
No related branches found
No related tags found
No related merge requests found
......@@ -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") or filename.endswith(".job")):
if not (filename.endswith("_env") or filename.endswith("_script") or filename.endswith(".job") or filename.endswith(".md")):
if os.path.isfile(filename):
os.remove(filename)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment