-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] Remove pytest-trio from test dependencies.
trio v0.22 deprecated trio.MultiError. This adjustment requires at least pytest-trio v0.8.0, [0] which, in turn, depends on pytest>=7.2. Pytest-asyncio currently supports pytest>=7.0. Therefore, we either need to juggle with the constraints in the pytest-min test environment or remove the pytest-trio dependency entirely. I opted for the latter. Pytest-asyncio should be compatible with other plugins, but it should not be responsible to test that compatibility. If every pytest plugin wrote tests against other plugins, we ended up in dependency hell and a lot of work would be done multiple times. There's a dedicated section in pytest for testing plugin integration. This is the right place to do it. [0] https://pytest-trio.readthedocs.io/en/v0.8.0/history.html#misc Signed-off-by: Michael Seifert <[email protected]>
- Loading branch information
Showing
6 changed files
with
65 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,14 @@ | ||
async-generator==1.10 | ||
attrs==23.1.0 | ||
coverage==7.3.2 | ||
exceptiongroup==1.1.3 | ||
flaky==3.7.0 | ||
hypothesis==6.88.3 | ||
idna==3.4 | ||
importlib-metadata==6.8.0 | ||
iniconfig==2.0.0 | ||
mypy==1.6.1 | ||
mypy-extensions==1.0.0 | ||
outcome==1.3.0.post0 | ||
packaging==23.2 | ||
pluggy==1.3.0 | ||
pyparsing==3.1.1 | ||
pytest==7.4.3 | ||
pytest-trio==0.8.0 | ||
sniffio==1.3.0 | ||
sortedcontainers==2.4.0 | ||
tomli==2.0.1 | ||
trio==0.23.1 | ||
typed-ast==1.5.5 | ||
zipp==3.17.0 | ||
typing_extensions==4.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
argcomplete==2.0.0 | ||
attrs==22.1.0 | ||
certifi==2022.9.24 | ||
charset-normalizer==2.1.1 | ||
elementpath==3.0.2 | ||
exceptiongroup==1.0.0rc9 | ||
hypothesis==6.56.3 | ||
argcomplete==3.1.2 | ||
attrs==23.1.0 | ||
certifi==2023.7.22 | ||
charset-normalizer==3.3.1 | ||
coverage==7.3.2 | ||
elementpath==4.1.5 | ||
exceptiongroup==1.1.3 | ||
flaky==3.7.0 | ||
hypothesis==6.88.3 | ||
idna==3.4 | ||
iniconfig==1.1.1 | ||
mock==4.0.3 | ||
iniconfig==2.0.0 | ||
mock==5.1.0 | ||
mypy==1.6.1 | ||
mypy-extensions==1.0.0 | ||
nose==1.3.7 | ||
packaging==21.3 | ||
pluggy==1.0.0 | ||
packaging==23.2 | ||
pluggy==1.3.0 | ||
py==1.11.0 | ||
Pygments==2.13.0 | ||
pyparsing==3.0.9 | ||
Pygments==2.16.1 | ||
pytest==7.0.0 | ||
requests==2.28.1 | ||
requests==2.31.0 | ||
sortedcontainers==2.4.0 | ||
tomli==2.0.1 | ||
trio==0.21.0 | ||
urllib3==1.26.12 | ||
xmlschema==2.1.1 | ||
typing_extensions==4.8.0 | ||
urllib3==2.0.7 | ||
xmlschema==2.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.