Pillow/tox.ini

37 lines
789 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-10-26 09:07:44 +03:00
py{35,36,37,38,py3}
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
2020-01-27 04:30:27 +03:00
{envpython} -m pytest -W always {posargs}
deps =
cffi
numpy
olefile
pyroma
pytest
[testenv:lint]
commands =
2019-11-02 21:02:07 +03:00
black --target-version py35 --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