Skip to content
Snippets Groups Projects
Commit 2805eb89 authored by Amandine  PERRIN's avatar Amandine PERRIN
Browse files

do not re-create genepath if already exists

parent 9a3c3a41
No related branches found
No related tags found
No related merge requests found
Pipeline #39608 failed
......@@ -34,7 +34,8 @@ def setup_teardown_module():
- remove all log files
- remove directory with generated results
"""
os.mkdir(GENEPATH)
if not os.path.isdir(GENEPATH):
os.mkdir(GENEPATH)
print("setup")
yield
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment