No description
  • Python 96.6%
  • Jupyter Notebook 3.4%
Find a file
2026-09-01 09:35:01 +02:00
hands_on prague 2026 material 2026-09-01 09:35:01 +02:00
hands_on_solutions prague 2026 material 2026-09-01 09:35:01 +02:00
testing_project prague 2026 material 2026-09-01 09:35:01 +02:00
.gitignore prague 2026 material 2026-09-01 09:35:01 +02:00
debugging.pdf prague 2026 material 2026-09-01 09:35:01 +02:00
LICENSE.txt prague 2026 material 2026-09-01 09:35:01 +02:00
pdb-cheatsheet.pdf prague 2026 material 2026-09-01 09:35:01 +02:00
README.md prague 2026 material 2026-09-01 09:35:01 +02:00
requirements.txt prague 2026 material 2026-09-01 09:35:01 +02:00
testing_part1.pdf prague 2026 material 2026-09-01 09:35:01 +02:00
testing_part2.pdf prague 2026 material 2026-09-01 09:35:01 +02:00

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