From 91b713884d220edd15a7303bf5175cbc590c4ff4 Mon Sep 17 00:00:00 2001 From: Nigel Jones Date: Tue, 3 Mar 2026 11:00:28 +0000 Subject: [PATCH] chore: remove code coverage from pytest screen output (#565) # Misc PR ## Type of PR - [ ] Bug Fix - [ ] New Feature - [ ] Documentation - [x] Other ## Description - [x] Link to Issue: Fixes #565 Removed `--cov-report=term` from the `[tool.pytest.ini_options]` configuration in `pyproject.toml` to prevent test runs from dumping large code coverage tables to the terminal. Test coverage is still generated and output to files `htmlcov/` and `coverage.json`. ### Testing - [ ] Tests added to the respective file if code was changed - [ ] New code has 100% coverage if code as added - [ ] Ensure existing tests and github automation passes (a maintainer will kick off the github automation when the rest of the PR is populated) --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b865ef403..5987d691f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -255,7 +255,6 @@ addopts = [ # Run qualitative tests by default (use -m "not qualitative" for fast tests) "--cov=mellea", "--cov=cli", - "--cov-report=term", "--cov-report=html", "--cov-report=json", # Set timeout to 15 minutes for full test suite