Skip to content

Commit

Permalink
test: disable for old headless
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Sep 5, 2024
1 parent 701fff2 commit 4dd40df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/bluetooth/test_handle_prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
}
}],
indirect=True)
async def test_bluetooth_handle_prompt(websocket, context_id, html):
async def test_bluetooth_handle_prompt(websocket, context_id, html,
test_headless_mode):
if test_headless_mode == "old":
pytest.xfail("Old headless mode does not support Bluetooth")

await subscribe(websocket, ['bluetooth'])

url = html(HTML_SINGLE_PERIPHERAL)
Expand Down

0 comments on commit 4dd40df

Please sign in to comment.