Pillow/tox.ini
Hugo van Kemenade 6c057b3277 Run tox-ini-fmt
2023-04-03 23:08:23 +03:00

31 lines
540 B
INI

[tox]
minversion = 1.9
envlist =
lint
py{py3, 311, 310, 39, 38}
[testenv]
deps =
cffi
numpy
extras =
tests
commands =
make clean
{envpython} -m pip install --global-option="build_ext" --global-option="--inplace" .
{envpython} selftest.py
{envpython} -m pytest -W always {posargs}
allowlist_externals =
make
[testenv:lint]
skip_install = true
deps =
check-manifest
pre-commit
passenv =
PRE_COMMIT_COLOR
commands =
pre-commit run --all-files --show-diff-on-failure
check-manifest