Skip to content

Commit

Permalink
modif prev_outputs test_response
Browse files Browse the repository at this point in the history
  • Loading branch information
VicTrqt committed Apr 12, 2024
1 parent b95465b commit d8ada74
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/abinit/jobs/test_response.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
def test_ddk_run_silicon_carbide_standard(mock_abinit, abinit_test_dir, clean_dir):
import os

from jobflow import run_locally
from monty.serialization import loadfn

Expand All @@ -11,7 +13,10 @@ def test_ddk_run_silicon_carbide_standard(mock_abinit, abinit_test_dir, clean_di
maker_info = loadfn(test_dir / "maker.json.gz")
maker = maker_info["maker"]
ref_paths = loadfn(test_dir / "ref_paths.json.gz")
prev_outputs = test_dir / "prev_outputs"
prev_outputs = [
test_dir / "prev_outputs" / subdir
for subdir in next(os.walk(test_dir / "prev_outputs"))[1]
]

mock_abinit(ref_paths)

Expand Down

0 comments on commit d8ada74

Please sign in to comment.