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

23 lines
435 B
INI
Raw Normal View History

2017-08-03 20:31:39 -04:00
[tox]
2020-12-01 08:36:59 +01:00
envlist = py{27,34,35,36,37,38,39,310,3-win}
2017-08-03 20:31:39 -04:00
skip_missing_interpreters = True
[testenv]
platform = linux
2017-08-03 20:31:39 -04:00
commands =
python setup.py test --test-suite tests.TestSuite
2017-08-03 20:31:39 -04:00
[testenv:py3-win]
platform = win
commands =
2020-06-11 23:23:54 -05:00
python -m pip install pywin32
python setup.py test --test-suite tests.TestSuite
2017-08-03 20:31:39 -04:00
[testenv:py27]
deps =
configparser
[flake8]
exclude = .tox,env,build
max-line-length = 120
ignore = E731,E203,E501,W503