@@ -3,7 +3,7 @@ requires = ["setuptools"]
33build-backend =" setuptools.build_meta"
44
55[tool .pytest .ini_options ]
6- addopts =" --cov=git --cov-report=term --disable-warnings"
6+ addopts =" --cov=git --cov-report=term --disable-warnings -ra "
77filterwarnings =" ignore::DeprecationWarning"
88python_files =" test_*.py"
99tmp_path_retention_policy =" failed"
@@ -14,8 +14,8 @@ testpaths = "test" # Space separated list of paths from root e.g test tests doc
1414# --cov-report html:path # html file at path
1515# --maxfail # number of errors before giving up
1616# -disable-warnings # Disable pytest warnings (not codebase warnings)
17- # -rf # increased reporting of failures
18- # -rE #increased reporting of errors
17+ # -rfE # default test summary: list fail and error
18+ # -ra #test summary: list all non-passing (fail, error, skip, xfail, xpass)
1919# --ignore-glob=**/gitdb/* # ignore glob paths
2020# filterwarnings ignore::WarningType # ignores those warnings
2121