Skip to content

Commit

Permalink
create input dir
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdAmmar committed Nov 15, 2024
1 parent c2dfed3 commit 35d0df0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/lunch_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,11 @@ def main():
work_path.mkdir(parents=True, exist_ok=True)
print(f"Directory '{work_path}' created.\n")

# to save QuAcK output
# for I/O
if not os.path.exists("{}/test".format(work_path)):
os.makedirs("{}/test".format(work_path))
if not os.path.exists("{}/input".format(work_path)):
os.makedirs("{}/input".format(work_path))

test_failed = False
for mol in molecules:
Expand Down

0 comments on commit 35d0df0

Please sign in to comment.