Pillow/tox.ini

30 lines
540 B
INI
Raw Normal View History

[tox]
envlist =
lint
2022-12-13 19:04:30 +03:00
py{py3, 311, 310, 39, 38, 37}
minversion = 1.9
[testenv]
2022-12-13 19:04:30 +03:00
deps =
cffi
numpy
extras =
tests
commands =
make clean
{envpython} -m pip install --global-option="build_ext" --global-option="--inplace" .
2013-03-07 18:06:51 +04:00
{envpython} selftest.py
2020-01-27 04:30:27 +03:00
{envpython} -m pytest -W always {posargs}
allowlist_externals = make
[testenv:lint]
2022-12-13 19:04:30 +03:00
passenv =
PRE_COMMIT_COLOR
skip_install = true
deps =
2022-12-13 19:04:30 +03:00
check-manifest
2020-02-05 18:59:04 +03:00
pre-commit
2022-12-13 19:04:30 +03:00
commands =
pre-commit run --all-files --show-diff-on-failure
check-manifest