From a504852c67599a0f39d10033b57a1394aa0e2989 Mon Sep 17 00:00:00 2001 From: Tom Andre Munkhaug Date: Fri, 13 Sep 2024 11:31:34 +0200 Subject: [PATCH] Fixed an 'InterpolationMissingOptionError' issue in pytest Additional details below: * https://github.com/pytest-dev/pytest/issues/3062 * https://github.com/pypa/pip/issues/5182 --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0211c4f..ab3be6b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -75,6 +75,6 @@ docstring-quotes = single [tool:pytest] log_cli = 1 log_cli_level = WARNING -log_cli_format = %(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s) -log_cli_date_format=%Y-%m-%d %H:%M:%S +log_cli_format = %%(asctime)s [%%(levelname)8s] %%(message)s (%%(filename)s:%%(lineno)s) +log_cli_date_format=%%Y-%%m-%%d %%H:%%M:%%S norecursedirs = .venv .git .mypy_cache .pytest_cache