Pillow/tox.ini

33 lines
693 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 =
2020-02-05 18:59:04 +03:00
pre-commit run --all-files
check-manifest
deps =
2020-02-05 18:59:04 +03:00
pre-commit
check-manifest
skip_install = true