2017-08-04 00:31:39 +00:00
|
|
|
[tox]
|
2019-04-30 16:22:28 +00:00
|
|
|
envlist = py27,py34,py35,py36,py3-win
|
2017-08-04 00:31:39 +00:00
|
|
|
skip_missing_interpreters = True
|
|
|
|
|
|
|
|
[testenv]
|
2019-04-30 16:22:28 +00:00
|
|
|
platform = linux
|
2017-08-04 00:31:39 +00:00
|
|
|
commands =
|
2020-06-12 04:20:16 +00:00
|
|
|
python setup.py test --test-suite tests.TestSuite
|
2017-08-04 00:31:39 +00:00
|
|
|
|
2019-04-30 16:22:28 +00:00
|
|
|
[testenv:py3-win]
|
|
|
|
platform = win
|
|
|
|
commands =
|
2020-06-12 04:20:16 +00:00
|
|
|
python pip install pywin32
|
|
|
|
python setup.py test --test-suite tests.TestSuite
|
2019-04-30 16:22:28 +00:00
|
|
|
|
2017-08-04 00:31:39 +00:00
|
|
|
[testenv:py27]
|
|
|
|
deps =
|
|
|
|
configparser
|
2020-06-12 04:20:16 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
exclude = .tox,env,build
|
|
|
|
max-line-length = 120
|
|
|
|
ignore = E731,E203,E501,W503
|