Skip to content

Commit

Permalink
Error on ResourceWarning (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz authored Feb 2, 2022
1 parent 41f8972 commit d1b9ae7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ envlist =
py310-codegen

[testenv]
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m coverage run -m pytest {posargs:tests}
commands =
python \
-W error::ResourceWarning \
-W error::DeprecationWarning \
-W error::PendingDeprecationWarning \
-m coverage run \
-m pytest {posargs:tests}
deps = -r requirements/{envname}.txt
setenv =
PYTHONDEVMODE=1
Expand Down

0 comments on commit d1b9ae7

Please sign in to comment.