send2trash/tox.ini

22 lines
333 B
INI
Raw Normal View History

2017-08-03 19:31:39 -05:00
[tox]
2021-03-02 00:24:59 -06:00
envlist = py{27,34,35,36,37,38,39,310}
2017-08-03 19:31:39 -05:00
skip_missing_interpreters = True
[testenv]
2021-03-02 00:24:59 -06:00
deps =
flake8
pytest
pywin32; sys_platform == 'win32'
commands =
2021-03-02 00:24:59 -06:00
flake8
pytest
2017-08-03 19:31:39 -05:00
[testenv:py27]
deps =
configparser
2021-03-02 00:24:59 -06:00
{[testenv]deps}
[flake8]
exclude = .tox,env,build
max-line-length = 120
ignore = E731,E203,E501,W503