You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
We've encountered a bug when
doctest.DocTestFinder().find()
is used withramlient.Client
.coala/corobo#616 is example of enabling
pytest --doctest-modules
andhttps://travis-ci.org/coala/corobo/builds/416950463 shows the failure.
It makes no difference which .raml is loaded; any variable wih an instance of
Client
will trigger it.Here is a simplified case.
https://docs.python.org/3/library/inspect.html#inspect.unwrap was added in Python 3.4 , but it wasnt used in doctest (&pydoc) until Python 3.5. python/cpython@b532df62b9
I guess it is a fairly simply thing to workaround in
__getattr__
. We'll submit a patch shortly.The text was updated successfully, but these errors were encountered: