Skip to content

Commit

Permalink
Merge pull request #1740 from EliahKagan/summary
Browse files Browse the repository at this point in the history
List all non-passing tests in test summaries
  • Loading branch information
Byron committed Nov 15, 2023
2 parents ff84a74 + 359116b commit 5c6a4f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
addopts = "--cov=git --cov-report=term --disable-warnings"
addopts = "--cov=git --cov-report=term --disable-warnings -ra"
filterwarnings = "ignore::DeprecationWarning"
python_files = "test_*.py"
tmp_path_retention_policy = "failed"
Expand All @@ -14,8 +14,8 @@ testpaths = "test" # Space separated list of paths from root e.g test tests doc
# --cov-report html:path # html file at path
# --maxfail # number of errors before giving up
# -disable-warnings # Disable pytest warnings (not codebase warnings)
# -rf # increased reporting of failures
# -rE # increased reporting of errors
# -rfE # default test summary: list fail and error
# -ra # test summary: list all non-passing (fail, error, skip, xfail, xpass)
# --ignore-glob=**/gitdb/* # ignore glob paths
# filterwarnings ignore::WarningType # ignores those warnings

Expand Down

0 comments on commit 5c6a4f4

Please sign in to comment.