Skip to content

Commit

Permalink
Merge pull request #481 from Nitrokey/se050-test-version-check
Browse files Browse the repository at this point in the history
Remove firmware version check for SE050 test
  • Loading branch information
sosthene-nitrokey committed Dec 19, 2023
2 parents 5b53098 + 5b6d0d5 commit 89f4a43
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions pynitrokey/cli/nk3/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,6 @@ def test_se050(ctx: TestContext, device: Nitrokey3Base) -> TestResult:

if not isinstance(device, Nitrokey3Device):
return TestResult(TestStatus.SKIPPED)
firmware_version = ctx.firmware_version or device.version()
if (
firmware_version.core() < Version(1, 5, 0)
or firmware_version.core() >= Version(1, 6, 0)
or firmware_version.pre is None
):
return TestResult(TestStatus.SKIPPED)

que: Queue[Optional[bytes]] = Queue()

Expand Down

0 comments on commit 89f4a43

Please sign in to comment.