Monday, August 26, 2019

Matt Layman: Quick and dirty mock service with Starlette

I had a challenge at work. The team needed to mock out a third party service in a testing environment. The service was slow and configuring it was painful. If we could mock it out, then the team could avoid those problems. The challenge with mocking out the service is that part of the flow needs to invoke a webhook that will call back to my company’s system to indicate that all work is done.

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...