From 77467bbf21076953694d4d424d457fc22ff0529b Mon Sep 17 00:00:00 2001 From: Lasse Benninga Date: Tue, 28 Jul 2026 22:14:50 +0200 Subject: [PATCH] chore: ignore Python __pycache__ and bytecode Keep pytest cache artifacts out of student assignment submissions. Co-authored-by: Cursor --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 794e281..af97267 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,12 @@ dbt_packages/ target/ logs/ +# Python +__pycache__/ +*.py[cod] +*$py.class +.pytest_cache/ + # Editor and IDE settings .vscode/ .idea/