From d5628d62e3a788d8be3f8aba56401856d3538ecd Mon Sep 17 00:00:00 2001 From: Charles-Edouard de la Vergne Date: Mon, 29 Apr 2024 09:52:11 +0200 Subject: [PATCH] Disable eip712 tests because of not supported swipe --- tests/ragger/test_eip712.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/ragger/test_eip712.py b/tests/ragger/test_eip712.py index e61f2fd9..6acf3f66 100644 --- a/tests/ragger/test_eip712.py +++ b/tests/ragger/test_eip712.py @@ -139,6 +139,8 @@ def test_eip712_new(firmware: Firmware, app_client = EthAppClient(backend) if firmware.device == "nanos": pytest.skip("Not supported on LNS") + if firmware.device == "flex": + pytest.skip("Not yet available on Flex (due to swipe)") test_path = f"{input_file.parent}/{'-'.join(input_file.stem.split('-')[:-1])}" conf_file = f"{test_path}.ini" @@ -188,6 +190,8 @@ def test_eip712_address_substitution(firmware: Firmware, app_client = EthAppClient(backend) if firmware.device == "nanos": pytest.skip("Not supported on LNS") + if firmware.device == "flex": + pytest.skip("Not yet available on Flex (due to swipe)") with app_client.get_public_addr(display=False): pass