Walmart Bryan Finster Sep 15, 2020

5 Minute DevOps Effective Testing

Article Summary

Walmart's DevOps team has a bold claim: if you're not testing during development, you're risking the business. Here's why your testing strategy might be fundamentally broken.

Bryan Finster from Walmart Global Tech breaks down what effective testing actually means in a continuous delivery world. This isn't about tools or automation teams. It's about developers owning quality from unit tests to production.

Key Takeaways

Critical Insight

High performing teams depend on developer written tests across multiple layers, not external test teams or fancy tools that promise to automate quality.

The article reveals why that expensive test automation tool your leadership bought might actually be putting your releases at greater risk.

About This Article

Problem

Flaky integration tests are a real problem for teams. When external dependencies go down, tests fail unpredictably and block deployments. This is especially painful during production incidents when you need to move fast.

Solution

Bryan Finster suggests using service virtualization tools like Wiremock and Mountebank. These act as proxies for your dependencies. Run integration tests on a schedule outside your normal CI pipeline. This reduces flakiness while keeping your test coverage intact.

Impact

With this approach, you don't have to choose between skipping tests in emergencies or blocking deployments. Teams can ship safely whenever they need to, without manual workarounds or bypassing quality checks.