Skip to content

Commit

Permalink
Remove firmware version check for SE050 test
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey committed Dec 1, 2023
1 parent c88030e commit 5b6d0d5
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 5b6d0d5

Please sign in to comment.