Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 15, 2023
1 parent aba6b76 commit b70c3ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_molecule.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def test_run_pyscf():
assert h2.e_hf == pytest.approx(h2_ref_energy)
assert np.allclose(h2.hcore, h2_ref_hcore)


def test_run_pyscf_molecule_xyz():
"""Pyscf driver with xyz file"""

lih_ref_energy = -7.83561582555692
lih_ref_energy = -7.83561582555692
lih = Molecule(xyz_file="lih.xyz")
lih.run_pyscf()

assert lih.e_hf == pytest.approx(lih_ref_energy)

assert lih.e_hf == pytest.approx(lih_ref_energy)


@pytest.mark.skip(reason="psi4 doesn't offer pip install, so needs to be installed through conda or manually.")
Expand Down

0 comments on commit b70c3ad

Please sign in to comment.