-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
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
➖ remove asynctest
dependency and replace with unittest
#449
Conversation
For some reason the |
This one's probably harder to review, but it's all in the 3f7a901 commit! To help summarise: all of the asynctest imports can essentially be swapped to unittest. Lastly, AsyncTestCase is now IsolatedAsyncioTestCase, and the Main motivation is not wanting deprecated dependencies, but also to get the testing framework in sync with ACA-Py (as in openwallet-foundation/acapy#2566 and openwallet-foundation/acapy#2755), helps with maintainability across the repos |
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
Signed-off-by: ff137 <ff137@proton.me>
asynctest
dependencyasynctest
dependency and replace with unittest
Replaces
asynctest
withunittest
in all modulesIncludes formatting changes from #448. Marking as draft until that one's merged