Skip to content

Commit

Permalink
Merge pull request #945 from OpenFreeEnergy/fix-tmp-files-tests
Browse files Browse the repository at this point in the history
Fix errand files being created during tests
  • Loading branch information
IAlibay authored Sep 30, 2024
2 parents 015f34e + 6b91720 commit 521c7d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openfe/tests/protocols/test_openmm_plain_md_protocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ def test_dry_run_gaff_vacuum(benzene_vacuum_system, tmpdir):
mapping=None,
)
unit = list(dag.protocol_units)[0]
system = unit.run(dry=True)["debug"]["system"]
with tmpdir.as_cwd():
system = unit.run(dry=True)["debug"]["system"]


@pytest.mark.parametrize('method, backend, ref_key', [
Expand Down

0 comments on commit 521c7d8

Please sign in to comment.