1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2026-01-22 14:41:40 +00:00
Files
send2trash/tox.ini
Andrew Senetar 9465587899 chore: Update CI workflow versions add python 3.14
- Add Python 3.14
- Update GitHub Actions to latest versions
- Enable macOS in CI
2025-12-31 01:29:34 +00:00

26 lines
432 B
INI

[tox]
envlist = py{38,39,310,311,312,313,314}
skip_missing_interpreters = True
isolated_build = 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
select = C,E,F,W,B,B950
extend-ignore = E203, E501