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(): ...@@ -34,7 +34,8 @@ def setup_teardown_module():
- remove all log files - remove all log files
- remove directory with generated results - remove directory with generated results
""" """
os.mkdir(GENEPATH) if not os.path.isdir(GENEPATH):
os.mkdir(GENEPATH)
print("setup") print("setup")
yield yield
......
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