Skip to content

Commit

Permalink
Allow print statements in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler committed Dec 20, 2024
1 parent 2f6cc0a commit 94f94c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ extend-select = [
"YTT", # flake8-2020
]
ignore = [
"UP015", # ignore redundant modes in `open` (it's ok to be explicit)
"UP015", # ignore redundant modes in `open` (it's ok to be explicit)
"ISC001", # Conflicts with formatter
"PLR09", # Too many <...>
"PLR2004", # Magic value used in comparison
Expand All @@ -119,3 +119,5 @@ ignore = [
[tool.ruff.lint.per-file-ignores]
# disable unused-imports errors on __init__.py
"__init__.py" = ["F401"]
# allow print statements in tests
"pooch/tests/**" = ["T20"]

0 comments on commit 94f94c8

Please sign in to comment.