Tag: testing
All the articles with the tag "testing".
Load Testing Guide
Published:15 min readWe built a new service that handled 20x more traffic than expected. When we load tested it, it died at 20% of expected traffic. My complete guide to load testing, from choosing tools to interpreting results.
Strategies for Writing Useful Tests
Published:9 min readI used to hate writing tests—they felt like a waste of time, took forever to run, and broke constantly. Now I actually enjoy it. Here are the strategies that transformed my approach to testing from dread to delight.
Using Bandit in the Field
Published:7 min readAfter talking about Bandit, I wanted to see how it actually performed in the real world. This post shares my experience using Bandit to find vulnerabilities in Python projects and practical tips for integrating it into your workflow.
Finding Vulnerabilities with Bandit
Published:2 min readPython's dynamic nature makes it hard to catch security vulnerabilities statically. Bandit scans your Python code for common security issues. Learn how to use it to find problems before they reach production.