What changed, and why it matters
This commit only adds a new hardware model code name ('t3w1') to an internal test skip list. It does not change any firmware behavior, cryptographic code, or user-facing functionality. There is no security relevance.
No action required; the change is non-security-related test maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change extends the parametrize_using_common_fixtures decorator in tests/common.py so that tests marked to skip the ‘t3w1’ model are correctly mapped to models.T3W1. It is purely a test-infrastructure update with no product code changes.
Changed components
tests/common.pyInspect captured patch +2 / −0
diff --git a/tests/common.py b/tests/common.py
index cfdc8acdd..67508d359 100644
--- a/tests/common.py
+++ b/tests/common.py
@@ -111,6 +111,8 @@ def parametrize_using_common_fixtures(*paths: str) -> "MarkDecorator":
skiplist.append(models.T3B1)
if skip_model == "t3t1":
skiplist.append(models.T3T1)
+ if skip_model == "t3w1":
+ skiplist.append(models.T3W1)
if skiplist:
extra_marks = [pytest.mark.models(skip=skiplist)]
else:
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.