Skip to content

Commit

Permalink
Enable all Python warnings in the test suite (#638)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Jun 27, 2024
1 parent 5a014da commit 4b6ad18
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@ envlist=
lint

[testenv]
setenv =
PYTHONTRACEMALLOC=1
extras=
dev
commands=
py.test --benchmark-skip {posargs}
python -Wall -m pytest --benchmark-skip {posargs}
passenv=
TRAVIS

[testenv:py{38,39,310,311,312}-gevent]
setenv =
PYTHONTRACEMALLOC=1
extras=
dev
commands=
python {toxinidir}/pytest-gevent.py --benchmark-skip {posargs}
python -Wall {toxinidir}/pytest-gevent.py --benchmark-skip {posargs}
passenv=
TRAVIS

Expand Down

0 comments on commit 4b6ad18

Please sign in to comment.