From 5a5980f3bee0113d995a67453cba0f0d2c25a52f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 4 Dec 2024 15:18:25 +0100 Subject: [PATCH] revert pytest log format This is makes error output of command extremly unreadable. If someone wants a different value they can specify it on the commandline. --- pkgs/clan-cli/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/pyproject.toml b/pkgs/clan-cli/pyproject.toml index 2d84cfdba..cdd7369c9 100644 --- a/pkgs/clan-cli/pyproject.toml +++ b/pkgs/clan-cli/pyproject.toml @@ -31,7 +31,7 @@ clan_cli = [ testpaths = "tests" faulthandler_timeout = 60 log_level = "DEBUG" -log_format = "%(levelname)s: %(message)s\n %(pathname)s:%(lineno)d::%(funcName)s" +log_format = "%(message)s" addopts = "--cov . --cov-report term --cov-report html:.reports/html --no-cov-on-fail --durations 5 --color=yes --new-first -W error -n auto" # Add --pdb for debugging norecursedirs = "tests/helpers" markers = ["impure", "with_core"]