Skip to content

Commit

Permalink
Guard test against missing GROMACS package.
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Apr 15, 2024
1 parent 958eaf6 commit d79961e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Sandpit/Exscientia/Process/test_position_restraint.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def test_gromacs_alchemical_ion(


@pytest.mark.skipif(
has_amber is False or has_openff is False,
reason="Requires AMBER and openff to be installed",
has_amber is False or has_gromacs is False or has_openff is False,
reason="Requires AMBER, GROMACS and OpenFF to be installed",
)
@pytest.mark.parametrize(
("restraint", "target"),
Expand Down

0 comments on commit d79961e

Please sign in to comment.