1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2025-03-12 14:44:35 +00:00
send2trash/tox.ini

26 lines
431 B
INI
Raw Normal View History

2017-08-03 20:31:39 -04:00
[tox]
2021-03-02 00:24:59 -06:00
envlist = py{27,34,35,36,37,38,39,310}
2017-08-03 20:31:39 -04:00
skip_missing_interpreters = True
2021-08-19 20:34:59 -05:00
isolated_build = True
2017-08-03 20:31:39 -04: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 20:31:39 -04: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