Skip to content

Commit

Permalink
Add missing skipif decorator.
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Jul 4, 2024
1 parent ce3c877 commit 44e83d1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Sandpit/Exscientia/Process/test_gromacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@ def test_selective(perturbable_system, filename, u_nk, dHdl):
assert not (Path(process.workDir()) / "dHdl.parquet").exists()


@pytest.mark.skipif(
has_gromacs is False or has_pyarrow is False,
reason="Requires GROMACS and pyarrow to be installed.",
)
def test_error_saveMetric(perturbable_system):
protocol = BSS.Protocol.FreeEnergy()
process = BSS.Process.Gromacs(perturbable_system, protocol)
Expand Down

0 comments on commit 44e83d1

Please sign in to comment.