You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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