What changed, and why it matters
This commit changes a single test marker so that a Cardano message-signing test runs on Trezor Model T/Core devices instead of being skipped on the older T1B1 model. It is a test-suite maintenance change with no effect on the actual firmware code that users rely on.
No security action needed; treat as routine test maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff replaces pytest.mark.skip_t1b1 with pytest.mark.models("core") in tests/device_tests/cardano/test_sign_message.py. This only affects which hardware models the test targets during CI; no production code, cryptographic logic, or device behavior is modified.
Changed components
tests/device_tests/cardano/test_sign_message.pyInspect captured patch +1 / −1
diff --git a/tests/device_tests/cardano/test_sign_message.py b/tests/device_tests/cardano/test_sign_message.py
index 436043d6..86a643b7 100644
--- a/tests/device_tests/cardano/test_sign_message.py
+++ b/tests/device_tests/cardano/test_sign_message.py
@@ -9,7 +9,7 @@ from ...common import parametrize_using_common_fixtures
pytestmark = [
pytest.mark.altcoin,
pytest.mark.cardano,
- pytest.mark.skip_t1b1,
+ pytest.mark.models("core"),
]
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.