From 63a75203a7ac2800e8d5e4ebb321d1cb8c543a11 Mon Sep 17 00:00:00 2001 From: Evan Mattson <35585003+moonbox3@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:05:05 -0500 Subject: [PATCH] Python: Remove code coverage def in pyproject.toml which doesn't allow one to debug unit tests (#4519) ### Motivation and Context Fixes #4515. After adding some test code coverage config to the pyproject.toml, one isn't able to debug unit tests. Removing this config allows one to debug the unit tests again. ### Description The code coverage config is still working for other tasks, so this doesn't remove it completely. ### Contribution Checklist - [X] The code builds clean without any errors or warnings - [X] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [X] All unit tests pass, and I have added new tests where possible - [X] I didn't break anyone :smile: Co-authored-by: Evan Mattson --- python/pyproject.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index cc420dd549e7..3c542c85e346 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -72,12 +72,6 @@ azure-identity = "^1.13.0" usearch = "1.1.1" pyarrow = ">=12.0.1,<15.0.0" -[tool.pytest.ini_options] -addopts = "--cov=semantic_kernel --cov-report term-missing" -testpaths = [ - "tests" -] - [tool.isort] profile = "ruff"