This repository contains hands-on technical exercises to improve testing skills through guided challenges. Each folder is a standalone task focused on a specific topic such as test design, mutation testing, or debugging.
- Each task is in its own folder
- Inside each folder you'll find:
- A minimal codebase
- A
README.mdwith task instructions
- Create a virtual environment:
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\\Scripts\\activate- Install dependencies:
pip install -r requirements.txt