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'
|
2021-04-13 22:36:10 -05:00
|
|
|
pyobjc-framework-Cocoa; sys_platform == 'darwin'
|
2019-04-30 19:22:28 +03:00
|
|
|
commands =
|
2021-03-02 00:24:59 -06:00
|
|
|
flake8
|
|
|
|
pytest
|
2019-04-30 19:22:28 +03:00
|
|
|
|
2017-08-03 20:31:39 -04:00
|
|
|
[testenv:py27]
|
|
|
|
deps =
|
|
|
|
configparser
|
2021-03-02 00:24:59 -06:00
|
|
|
{[testenv]deps}
|
2020-06-11 23:20:16 -05:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
exclude = .tox,env,build
|
|
|
|
max-line-length = 120
|
2021-08-17 18:54:52 -05:00
|
|
|
select = C,E,F,W,B,B950
|
|
|
|
extend-ignore = E203, E501
|