Skip to content

Commit

Permalink
Merge branch 'sunspot-tests' of github.com:globus-labs/mof-generation…
Browse files Browse the repository at this point in the history
…-at-scale into sunspot-tests
  • Loading branch information
WardLT committed May 23, 2024
2 parents 160adaa + 9455983 commit 1fd87d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/simulation/test_lammps.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def test_lammps_runner(cif_name, cif_dir, tmpdir):
# Make a LAMMPS simulator that reads and writes to a
lmprunner = LAMMPSRunner(
lammps_command=["lmp"],
lammps_command=["lmp_serial"],
lmp_sims_root_path=tmpdir / "lmp_sims",
lammps_environ={'OMP_NUM_THREADS': '1'}
)
Expand All @@ -28,7 +28,7 @@ def test_lammps_runner(cif_name, cif_dir, tmpdir):

# Make sure that it runs
ret = lmprunner.invoke_lammps(lmp_path)
assert ret.returncode == 0
assert ret.returncode == 0, Path(lmp_path).joinpath('stdout.lmp').read_text()

# Test the full pipeline, forcing deletion on the end
lmprunner.delete_finished = True
Expand Down

0 comments on commit 1fd87d6

Please sign in to comment.