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
pytest 4.1 has just been released. According to the changelog, it removes
pytest-dev/pytest#4546: Remove Node.get_marker(name) the return value was not usable for more than a existence check.
which causes our CI tests to fail:
______________________________ test_parse_header _______________________________ [gw1] linux -- Python 3.6.7 /home/travis/virtualenv/python3.6.7/bin/python self = <pytest_cov.plugin.CovPlugin object at 0x7f551435ca58> item = <Function test_parse_header> @compat.hookwrapper def pytest_runtest_call(self, item): > if (item.get_marker('no_cover') or 'no_cover' in getattr(item, 'fixturenames', ())): E AttributeError: 'Function' object has no attribute 'get_marker' ../../../virtualenv/python3.6.7/lib/python3.6/site-packages/pytest_cov/plugin.py:289: AttributeError
This is an issue with pytest-cov: pytest-dev/pytest-cov#253
The text was updated successfully, but these errors were encountered:
Closed by #13122.
Sorry, something went wrong.
No branches or pull requests
Bug report
pytest 4.1 has just been released. According to the changelog, it removes
which causes our CI tests to fail:
This is an issue with pytest-cov: pytest-dev/pytest-cov#253
The text was updated successfully, but these errors were encountered: