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
From the version 4.1.0 we are getting errors in our test cases that the transfer markers are no longer part of the pytest_asyncio.
The only solution provided for this is to revert back to the previous version: https://stackoverflow.com/questions/54064971/importerror-cannot-import-name-transfer-markers-when-testing-with-pytest
We are experiencing this issue in the bitbucket pipelines running a Linux system. Also, locally in the WSL environment. Python version is 3.6
import pytest @pytest.mark.asyncio() async def test_asyncio(): x = 1 assert x == 1
The error that we get is the following:
from _pytest.python import transfer_markers ImportError: cannot import name 'transfer_markers'
The text was updated successfully, but these errors were encountered:
@RonnyPfannschmidt closed a similar issue somewhere already, but I could not find it now.
Sorry, something went wrong.
Duplicate of pytest-dev/pytest-asyncio#104.
No branches or pull requests
From the version 4.1.0 we are getting errors in our test cases that the transfer markers are no longer part of the pytest_asyncio.
The only solution provided for this is to revert back to the previous version:
https://stackoverflow.com/questions/54064971/importerror-cannot-import-name-transfer-markers-when-testing-with-pytest
We are experiencing this issue in the bitbucket pipelines running a Linux system. Also, locally in the WSL environment. Python version is 3.6
The error that we get is the following:
The text was updated successfully, but these errors were encountered: