send2trash/tox.ini

23 lines
425 B
INI
Raw Normal View History

2017-08-03 19:31:39 -05:00
[tox]
envlist = py27,py34,py35,py36,py3-win
2017-08-03 19:31:39 -05:00
skip_missing_interpreters = True
[testenv]
platform = linux
2017-08-03 19:31:39 -05:00
commands =
python setup.py test --test-suite tests.TestSuite
2017-08-03 19:31:39 -05:00
[testenv:py3-win]
platform = win
commands =
python pip install pywin32
python setup.py test --test-suite tests.TestSuite
2017-08-03 19:31:39 -05:00
[testenv:py27]
deps =
configparser
[flake8]
exclude = .tox,env,build
max-line-length = 120
ignore = E731,E203,E501,W503