From 99f531dba1ed38a00e71afaa0a49129ce1981a05 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Thu, 7 Dec 2023 18:20:22 -0500 Subject: [PATCH] ugh try again. --- .../opentrons/protocol_api_integration/test_trashes.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/tests/opentrons/protocol_api_integration/test_trashes.py b/api/tests/opentrons/protocol_api_integration/test_trashes.py index 81150757b0f..b8436f6ce74 100644 --- a/api/tests/opentrons/protocol_api_integration/test_trashes.py +++ b/api/tests/opentrons/protocol_api_integration/test_trashes.py @@ -32,7 +32,12 @@ ), ], ), - ("2.16", "Flex", None), + pytest.param( + "2.16", + "Flex", + None, + marks=pytest.mark.ot3_only, # Simulating a Flex protocol requires a Flex hardware API. + ), ], ) def test_fixed_trash_presence( @@ -63,6 +68,7 @@ def test_fixed_trash_presence( assert instrument.trash_container is protocol.fixed_trash +@pytest.mark.ot3_only # Simulating a Flex protocol requires a Flex hardware API. def test_trash_search() -> None: """Test the automatic trash search for protocols without a fixed trash.""" protocol = simulate.get_protocol_api(version="2.16", robot_type="Flex")