So I'm horsing around with replacing python setup.py test with tox run and this RuntimeWarning jumped out at me.
test_should_not_notify_exception (honeybadger.tests.contrib.test_asgi.ASGIPluginTestCase) ... /home/curtis/src/honeybadger-python/.tox/py39/lib/python3.9/site-packages/mock/mock.py:1440: RuntimeWarning: coroutine 'TestClient.get' was never awaited
return await func(*newargs, **newkeywargs)
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
ok
So I'm horsing around with replacing
python setup.py test
withtox run
and this RuntimeWarning jumped out at me.https://github.com/honeybadger-io/honeybadger-python/blob/65215a97318bda878c8b23bbf64e5ff6cf3fd854/honeybadger/tests/contrib/test_asgi.py#L41-L45
It's actually there in the CI test output too. Appears harmless, but I'm not sure how to make it go away.