From 14574e837b45c78c1779e9298a5a6d29f2e05d20 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 7 Dec 2025 23:22:57 +0100 Subject: [PATCH] chore: add coverage files to gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add pytest coverage output files to project-level .gitignore: - coverage.json - htmlcov/ - .pytest_cache/ These are generated artifacts from pytest-cov and should not be committed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index af99cd5..e4b75ee 100644 --- a/.gitignore +++ b/.gitignore @@ -90,6 +90,9 @@ cache/ # Test output coverage/ .coverage +coverage.json +htmlcov/ +.pytest_cache/ test-results/ services/core-ai/tests/reports/