Skip to content

Commit

Permalink
Fix typo in setup.cfg warning configuration
Browse files Browse the repository at this point in the history
It appears that we were relying on the "errors" filter to treat
PendingDeprecationWarning as an error due to a typo in setup.cfg. This
line is apparently redundant with the "error" line anyway, but it's best
to have a working version of it if we're going to have it at all. I am
leaving it in place to be explicit that even these "ignored by default"
warnings should be errors, in case a default changes later.
  • Loading branch information
pganssle committed Oct 4, 2019
1 parent 6c7719b commit d832c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -55,7 +55,7 @@ xfail_strict = true
filterwarnings =
error
error::DeprecationWarning
error:PendingDeprecationWarning
error::PendingDeprecationWarning
markers =
gettz
import_star
Expand Down

0 comments on commit d832c3e

Please sign in to comment.