-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.23.2 will cause INTERNALERROR if ImportWarning
is raised in an imported module
#713
Comments
I understand that pytest-asyncio isn't supposed to trigger an INTERNALERROR. As far as I understand, pytest imports the If I raise an ImportWarning in a test module, the test run fails. Your case is slightly different, because the warning appears in a non-test module. |
I'm not quite sure if I've added a small pytest-asyncio 0.21.1
pytest-asyncio 0.23.2
Note that |
I have the impression that the new version more greedily loads
With raise Exception("This file should not be loaded by pytest") Running The scenario I'm describing takes place inside the |
Thanks for the investigations. I'll read have a look at how pytest handles these issues during collection and get back to you. |
In our case it is actually causing issues. In short, we have Python files in our tests dir that should only be loaded in a specific context. I'll elaborate in more detail below. We could probably work around it if we need to, but for now we have pinned pytest-asyncio to the previous version until this discussion reaches a conclusion. Our specifix use case: we are developing a Python project with a plugin system. Put simply, these plugins are Python packages that register themselves at load time. They are expected to be loaded by a custom importlib finder/loader and they do not work as standalone package. Since this plugin system is an integral part of the application we're developing, we test their behavior thoroughly. Therefore we have a bunch of these plugin "packages" as resources underneath our |
Understood. That's a fancy (but valid) use case :) |
@Stausssi This should be resolve with pytest-asyncio v0.23.3 |
@karolpawlowski I assume you're referring to the bug that causes an INTERNALERROR at test collection time and not about importing Can you provide a code snipped to reproduce the INTERNALERROR? |
Ah, yes. I have the same traceback that is currently in #729 . You could close this one. Thanks. |
For me the issue still exists with the same traceback. Please let me know if I can assist in any way. |
I think you're experiencing two separate issues leading to the same result. The first is that any warnings raised in modules cause an INTERNALERROR: raise ImportWarning()
async def test_errors_out():
pass This was caused by the fact that module imports were triggered before the actual collection phase. As a result, any exceptions weren't handled correctly by pytest. (To be clear, this is not a pytest issue, but an issue with pytest-asyncio) The other issue is that The problem is that the loading of @Stausssi Unless you have a strong opinion against it, I suggest to keep this issue closed and would appreciate if you'd subscribe to updates on #729. |
Can confirm. If I remove the |
Hi all,
I've run into an
INTERNALERROR
while pytest was collecting the tests / activating the plugins starting from pytest-asyncio v0.23.2.I have a file
src/module/module.py
with the contentsand
src/module/__init__.py
withWhen actually testing the module, obviously
Path.exists()
is mocked.This worked fine with pytest-asyncio v0.21.1 but causes an error with pytest-asyncio v0.23.2:
The text was updated successfully, but these errors were encountered: