Tag: Docker
-
Testing Functions with Localstack for Cloud Service Interactions
In software development, it’s common to write functions that interact with cloud services. Instead of testing these functions against the actual cloud services, you can utilize Localstack to create local mock versions of these services. Therefore, you don’t need to test our functions against the real cloud services and alter the state of the real…
-
Using Docker to Run Your Python Tests
Have you ever encountered the frustrating ‘It works on my machine’ problem? This is a common headache in software development. Docker containers provide a solution by packaging your code in a consistent environment. Because of this, Docker has become popular in many areas, especially for automating CI/CD pipelines. In this post, I’ll show you how…