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
Currently asyncio doesn't support test methods (see #4):
class Test: @pytest.mark.asyncio def test_some_asyncio_code(self): res = yield from library.do_something() assert b'expected result' == res
The text was updated successfully, but these errors were encountered:
Add support for test methods
8f19b54
- Inspired on the default implementation for pytest_pyfunc_call for normal test functions - Refactor pytest_pyfunc_call to remove duplication fixes #5
f11bd95
Wrestling with Travis #5.
58bf2f9
Tinche
Successfully merging a pull request may close this issue.
Currently asyncio doesn't support test methods (see #4):
The text was updated successfully, but these errors were encountered: