python-benedict/tox.ini

25 lines
381 B
INI
Raw Normal View History

2019-05-17 11:13:15 +00:00
[tox]
envlist =
2021-10-19 15:22:06 +00:00
py{27,35,36,37,38,39,310},
2019-06-01 15:22:00 +00:00
2019-05-17 11:13:15 +00:00
[testenv]
2019-06-01 15:22:00 +00:00
basepython =
py27: python2.7
py35: python3.5
py36: python3.6
py37: python3.7
2019-11-05 15:11:26 +00:00
py38: python3.8
2020-10-06 08:57:42 +00:00
py39: python3.9
2021-10-19 15:22:06 +00:00
py310: python3.10
2019-06-01 15:22:00 +00:00
2019-05-17 11:13:15 +00:00
passenv = CI TRAVIS TRAVIS_*
2019-06-01 15:22:00 +00:00
2019-05-17 11:13:15 +00:00
deps =
codecov
coverage
2019-06-01 15:22:00 +00:00
2019-05-17 11:13:15 +00:00
commands =
coverage run --append --source=benedict setup.py test
coverage report -m
codecov