asynctest icon indicating copy to clipboard operation
asynctest copied to clipboard

Enhance the standard unittest package with features for testing asyncio libraries

Results 52 asynctest issues
Sort by recently updated
recently updated
newest added

# Setup I use Python 3.7.8 and the following setup: ``` # requirements.txt asynctest==0.13.0 pytest==5.4.3 pytest-asyncio==0.14.0 ``` and the test file ``` # test.py import pytest from asynctest import mock...

Module mock.py, function `proxy`, declared in line 599, uses decorator `@asyncio.coroutine`. It seems that the asyncio `@coroutine` decorator is **deprecated since Python 3.8**. Please use `async def` instead. Source code...

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...

Since 3.4 is no longer supported would a PR be accepted removing all the asyncto coroutine decorators? Using 0.13.0 I get errors like: ``` .tox/py3/lib/python3.9/site-packages/asynctest/mock.py:434 350 /home/travis/build/pypa/bandersnatch/.tox/py3/lib/python3.9/site-packages/asynctest/mock.py:434: DeprecationWarning: "@coroutine" decorator...

Because Travis CI seems to be on vacation.

First of all, I would like to thanks author and contributors for this cool library. We are using it heavily in our codebase. Currently, we are in the middle of...

Added power support for the travis.yml file with ppc64le. This is part of the Ubuntu distribution for ppc64le. This helps us simplify testing later when distributions are re-building and re-releasing.

Addresses 126 Addresses 132 --- This change removes the usages of `@asyncio.coroutine` and replaces them with the recommended `async def` functions instead. This is because as of Python3.8 which is...