From 5e51844582cd584588f304abdf570fa6b4cb7a20 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:22:24 +0800 Subject: [PATCH] chore(pytest): config (#32) --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ea9c490..f48c0e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,13 @@ # pytest configuration [tool.pytest.ini_options] minversion = "8.0" -addopts = "-ra -q" +addopts = "-ra -q -l --tb=auto --color=yes" testpaths = [ "tests" ] pythonpath = ["src"] +verbosity_test_cases = 2 +verbosity_assertions = 2 # black configuration