From d350f47ee71454c6b56eabf272b9d9423107957f Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Wed, 25 Feb 2026 17:34:49 +0530 Subject: [PATCH] chore: Update pytest configuration in pyproject.toml to enhance test output - Added command-line options to pytest configuration for verbose output, short tracebacks, and duration reporting of the slowest tests. --- surfsense_backend/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/surfsense_backend/pyproject.toml b/surfsense_backend/pyproject.toml index e92395500..9dcb12485 100644 --- a/surfsense_backend/pyproject.toml +++ b/surfsense_backend/pyproject.toml @@ -171,6 +171,7 @@ testpaths = ["tests"] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"] +addopts = "-v --tb=short -x --durations=10" [tool.setuptools.packages.find] where = ["."]