We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when i use pytest.mark.asyncio with pytest.mark.parametrize,the async logic break
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
total exhaust 6 sec,but expected lower than 6 (which is the time spending for serial)
This is the expected behavior. pytest-asyncio creates a synchronous wrapper function for each async test case. The tests do not run concurrently.
There's an existing feature request for tests that run concurrently. I'll close this in favor of #69. Feel free to continue the discussion there.
No branches or pull requests
when i use pytest.mark.asyncio with pytest.mark.parametrize,the async logic break
The text was updated successfully, but these errors were encountered: