Pillow/tox.ini

37 lines
753 B
INI
Raw Normal View History

2017-05-15 12:56:16 +03:00
# Tox (https://tox.readthedocs.io/en/latest/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist =
lint
2019-01-27 11:53:30 +03:00
py{27,35,36,37}
minversion = 1.9
[testenv]
commands =
{envpython} setup.py clean
{envpython} setup.py build_ext --inplace
2013-03-07 18:06:51 +04:00
{envpython} selftest.py
{envpython} -m pytest {posargs}
deps =
cffi
numpy
olefile
pyroma
pytest
[testenv:lint]
commands =
2019-06-13 18:54:57 +03:00
black --check --diff .
flake8 --statistics --count
isort --check-only --diff
check-manifest
deps =
2019-03-20 19:23:44 +03:00
black
check-manifest
flake8
isort
skip_install = true