From 65b2381312073fe4c40221536975cb4d3707a3b2 Mon Sep 17 00:00:00 2001 From: Bendy <190111823+FlashJetton@users.noreply.github.com> Date: Sun, 7 Sep 2025 18:29:11 +0700 Subject: [PATCH] chore(gitignore): ignore tests/, pytest artifacts and local pytest.ini --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index a38ee6e..135a07e 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,11 @@ mkdocs.yml # Temporary files .DS_Store __MACOSX/ + +# Local tests (excluded from VCS as requested) +tests/ + +# Pytest artifacts +.pytest_cache/ +.coverage +pytest.ini -- 2.38.5