From d79961e71b7656cdc5900a56ec29045196bad277 Mon Sep 17 00:00:00 2001 From: Lester Hedges Date: Mon, 15 Apr 2024 10:58:54 +0100 Subject: [PATCH] Guard test against missing GROMACS package. --- tests/Sandpit/Exscientia/Process/test_position_restraint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Sandpit/Exscientia/Process/test_position_restraint.py b/tests/Sandpit/Exscientia/Process/test_position_restraint.py index 29a7aa35c..b82ec3c1f 100644 --- a/tests/Sandpit/Exscientia/Process/test_position_restraint.py +++ b/tests/Sandpit/Exscientia/Process/test_position_restraint.py @@ -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"),