Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/openfe/tests/protocols/openmm_ahfe/test_ahfe_slow.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@

@pytest.mark.integration # takes too long to be a slow test ~ 4 mins locally
@pytest.mark.flaky(reruns=3) # pytest-rerunfailures; we can get bad minimisation
@pytest.mark.parametrize("platform", ["CPU", "CUDA"])
@pytest.mark.parametrize(
"platform",
[pytest.param("CPU", marks=pytest.mark.xfail(reason="see openfe issue #1670")), "CUDA"],
)
def test_openmm_run_engine(
platform,
get_available_openmm_platforms,
Expand Down
Loading