send2trash/tox.ini

26 lines
431 B
INI
Raw Permalink 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
2021-08-19 20:34:59 -05:00
isolated_build = True
2017-08-03 19:31:39 -05:00
[testenv]
2021-03-02 00:24:59 -06:00
deps =
flake8
pytest
pywin32; sys_platform == 'win32'
pyobjc-framework-Cocoa; sys_platform == 'darwin'
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
select = C,E,F,W,B,B950
extend-ignore = E203, E501