Skip to content

Commit c3f126b

Browse files
authored
Prep for next pymatgen release (#690)
* snake_case test_lobster_task_doc_saved_jsons() name * fix removal of deprecated get_string() methods on pymatgen Poscar and Cp2kInput
1 parent 3b4c511 commit c3f126b

File tree

3 files changed

+18
-25
lines changed

3 files changed

+18
-25
lines changed

src/atomate2/vasp/sets/base.py

+9-13
Original file line numberDiff line numberDiff line change
@@ -94,28 +94,24 @@ def write_input(
9494
if make_dir:
9595
os.makedirs(directory, exist_ok=True)
9696

97-
inputs = {
98-
"INCAR": self.incar,
99-
"KPOINTS": self.kpoints,
100-
"POSCAR": self.poscar,
101-
}
97+
inputs = {"INCAR": self.incar, "KPOINTS": self.kpoints, "POSCAR": self.poscar}
10298
inputs.update(self.optional_files)
10399

104100
if isinstance(self.potcar, Potcar):
105101
inputs["POTCAR"] = self.potcar
106102
else:
107103
inputs["POTCAR.spec"] = "\n".join(self.potcar)
108104

109-
for k, v in inputs.items():
110-
if v is not None and (overwrite or not (directory / k).exists()):
111-
with zopen(directory / k, "wt") as f:
112-
if isinstance(v, Poscar):
105+
for key, val in inputs.items():
106+
if val is not None and (overwrite or not (directory / key).exists()):
107+
with zopen(directory / key, mode="wt") as file:
108+
if isinstance(val, Poscar):
113109
# write POSCAR with more significant figures
114-
f.write(v.get_string(significant_figures=16))
110+
file.write(val.get_str(significant_figures=16))
115111
else:
116-
f.write(v.__str__())
117-
elif not overwrite and (directory / k).exists():
118-
raise FileExistsError(f"{directory / k} already exists.")
112+
file.write(val.__str__())
113+
elif not overwrite and (directory / key).exists():
114+
raise FileExistsError(f"{directory / key} already exists.")
119115

120116
@staticmethod
121117
def from_directory(

tests/cp2k/conftest.py

+8-11
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def fake_run_cp2k(
135135
input_settings: Sequence[str] = (),
136136
check_inputs: Sequence[Literal["cp2k.inp"]] = _VFILES,
137137
clear_inputs: bool = True,
138-
):
138+
) -> None:
139139
"""
140140
Emulate running CP2K and validate CP2K input files.
141141
@@ -171,16 +171,16 @@ def fake_run_cp2k(
171171

172172
@pytest.fixture()
173173
def check_input():
174-
def _check_input(ref_path, user_input):
175-
from pymatgen.io.cp2k.inputs import Cp2kInput
174+
from pymatgen.io.cp2k.inputs import Cp2kInput
176175

177-
ref = Cp2kInput.from_file(ref_path / "inputs" / "cp2k.inp")
176+
def _check_input(ref_path, user_input: Cp2kInput):
177+
ref_input = Cp2kInput.from_file(ref_path / "inputs" / "cp2k.inp")
178178
user_input.verbosity(verbosity=False)
179-
ref.verbosity(verbosity=False)
180-
user_string = " ".join(user_input.get_string().lower().split())
179+
ref_input.verbosity(verbosity=False)
180+
user_string = " ".join(user_input.get_str().lower().split())
181181
user_hash = md5(user_string.encode("utf-8")).hexdigest()
182182

183-
ref_string = " ".join(ref.get_string().lower().split())
183+
ref_string = " ".join(ref_input.get_str().lower().split())
184184
ref_hash = md5(ref_string.encode("utf-8")).hexdigest()
185185

186186
if ref_hash != user_hash:
@@ -190,10 +190,7 @@ def _check_input(ref_path, user_input):
190190

191191

192192
def clear_cp2k_inputs():
193-
for cp2k_file in (
194-
"cp2k.inp",
195-
"cp2k.out",
196-
):
193+
for cp2k_file in ("cp2k.inp", "cp2k.out"):
197194
if Path(cp2k_file).exists():
198195
Path(cp2k_file).unlink()
199196
logger.info("Cleared cp2k inputs")

tests/vasp/lobster/schemas/test_lobster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def test_lobster_task_document_non_gzip(lobster_test_dir, tmp_path):
271271
assert doc.chemsys == "As-Ga"
272272

273273

274-
def test_lobstertaskdocument_saved_jsons(lobster_test_dir):
274+
def test_lobster_task_doc_saved_jsons(lobster_test_dir):
275275
"""
276276
Test if jsons saved are valid
277277
"""

0 commit comments

Comments
 (0)