Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 500 Bytes

File metadata and controls

19 lines (13 loc) · 500 Bytes
# Python Testing Python Testing with `pytest` – Example Code Repository This repository contains all the code examples for my Python Testing series. Our goal is to demonstrate how to write automated tests in Python using `pytest` and best practices for testing your projects. ## Getting Started Create a virtual environment to manage your local packages: ```bash $ python -m venv venv $ source venv/bin/activate # On Windows use `venv\Scripts\activate` # PythonTesting