1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2024-10-21 18:15:57 +00:00
send2trash/tox.ini
Andrew Senetar 530e9b4bc6
Add initial pyobjc version for macOS
This is to help with issue #51.  Will not help in the case of python 2 or
older python 3 version < 3.6.
2021-04-13 22:36:10 -05:00

23 lines
386 B
INI

[tox]
envlist = py{27,34,35,36,37,38,39,310}
skip_missing_interpreters = True
[testenv]
deps =
flake8
pytest
pywin32; sys_platform == 'win32'
pyobjc-framework-Cocoa; sys_platform == 'darwin'
commands =
flake8
pytest
[testenv:py27]
deps =
configparser
{[testenv]deps}
[flake8]
exclude = .tox,env,build
max-line-length = 120
ignore = E731,E203,E501,W503