Skip to content

Commit

Permalink
test(tornado): Unpin pytest for tornado-latest tests
Browse files Browse the repository at this point in the history
The Pytest version pin is only needed for `tornado-v6.0` and `tornado-v6.2`. The incompatibility with the latest Pytest versions has been fixed in newer Tornado versions.
  • Loading branch information
szokeasaurusrex committed Oct 29, 2024
1 parent 000c8e6 commit f8810f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,9 @@ deps =
strawberry-latest: strawberry-graphql[fastapi,flask]

# Tornado
tornado: pytest<8.2
# Tornado <6.4.1 is incompatible with Pytest ≥8.2
# See https://github.com/tornadoweb/tornado/pull/3382.
tornado-{v6.0,v6.2}: pytest<8.2
tornado-v6.0: tornado~=6.0.0
tornado-v6.2: tornado~=6.2.0
tornado-latest: tornado
Expand Down

0 comments on commit f8810f4

Please sign in to comment.