File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ select = [
59
59
" G" , # flake8-logging-format
60
60
# "INP", # flake8-no-pep420
61
61
" PYI" , # flake8-pyi
62
- # "PT", # flake8-pytest-style
62
+ " PT" , # flake8-pytest-style
63
63
" Q" , # flake8-quotes
64
64
" RSE" , # flake8-raise
65
65
# "RET", # flake8-return
@@ -141,6 +141,9 @@ ignore = [
141
141
" PLR2004" , # magic-value-comparison (comparing to constant values)
142
142
" ASYNC251" , # blocking-sleep-in-async-function (acceptable in tests)
143
143
" B904" , # raise-without-from-inside-except (not necessary in tests)
144
+ " PT006" , # pytest-parametrize-names-wrong-type (style choice)
145
+ " PT007" , # pytest-parametrize-values-wrong-type (style choice)
146
+ " PT011" , # pytest-raises-too-broad (we frequently test for generic errors)
144
147
]
145
148
"newrelic/admin/*" = [
146
149
# Disabled rules in admin scripts
You can’t perform that action at this time.
0 commit comments