Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 288 Bytes

File metadata and controls

12 lines (9 loc) · 288 Bytes

testing_debugging_profiling

Material for the class "Testing, debugging, profiling -- Python tools for building software"

Setup

Create a local virtual environment and install dependencies:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt