drop end of life python versions

This commit is contained in:
David Lord 2025-05-13 08:31:54 -07:00
parent e7e5380776
commit 52df9eed45
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
11 changed files with 78 additions and 284 deletions

View file

@ -462,7 +462,7 @@ class TestRoutes:
def expect_order(self, order, output):
# skip the header and match the start of each row
for expect, line in zip(order, output.splitlines()[2:]):
for expect, line in zip(order, output.splitlines()[2:], strict=False):
# do this instead of startswith for nicer pytest output
assert line[: len(expect)] == expect