2017-05-15 12:56:16 +03:00
|
|
|
# Tox (https://tox.readthedocs.io/en/latest/) is a tool for running tests
|
2012-06-06 08:33:18 +04:00
|
|
|
# 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]
|
2019-01-13 19:55:06 +03:00
|
|
|
envlist =
|
|
|
|
lint
|
2019-10-26 09:07:44 +03:00
|
|
|
py{35,36,37,38,py3}
|
2019-01-13 19:55:06 +03:00
|
|
|
minversion = 1.9
|
2012-06-06 08:33:18 +04:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
commands =
|
2013-07-09 07:04:47 +04:00
|
|
|
{envpython} setup.py clean
|
|
|
|
{envpython} setup.py build_ext --inplace
|
2013-03-07 18:06:51 +04:00
|
|
|
{envpython} selftest.py
|
2019-01-13 20:00:12 +03:00
|
|
|
{envpython} -m pytest {posargs}
|
2019-01-08 08:12:07 +03:00
|
|
|
deps =
|
|
|
|
cffi
|
|
|
|
numpy
|
|
|
|
olefile
|
|
|
|
pyroma
|
|
|
|
pytest
|
2019-01-13 19:55:06 +03:00
|
|
|
|
|
|
|
[testenv:lint]
|
|
|
|
commands =
|
2019-11-02 21:02:07 +03:00
|
|
|
black --target-version py35 --check --diff .
|
2019-01-13 19:55:06 +03:00
|
|
|
flake8 --statistics --count
|
2019-07-06 23:40:53 +03:00
|
|
|
isort --check-only --diff
|
2019-01-13 19:55:06 +03:00
|
|
|
check-manifest
|
|
|
|
deps =
|
2019-03-20 19:23:44 +03:00
|
|
|
black
|
2019-01-13 19:55:06 +03:00
|
|
|
check-manifest
|
|
|
|
flake8
|
2019-07-06 23:40:53 +03:00
|
|
|
isort
|
2019-01-13 19:55:06 +03:00
|
|
|
skip_install = true
|