grpclib/tox.ini

24 lines
402 B
INI
Raw Permalink Normal View History

2017-11-15 21:49:57 +00:00
[tox]
envlist = py{38,39},pypy3,lint,check
2017-11-15 21:49:57 +00:00
[testenv]
2019-04-28 13:35:51 +00:00
usedevelop = true
commands = py.test
deps = -r requirements/test.txt
2017-11-15 21:49:57 +00:00
[testenv:py38]
commands = py.test --cov
2019-11-26 10:31:12 +00:00
[testenv:lint]
2019-05-21 15:32:51 +00:00
basepython = python3
commands = flake8
2021-08-23 15:42:51 +00:00
deps = -r requirements/check.txt
2017-11-15 21:49:57 +00:00
2019-11-26 10:31:12 +00:00
[testenv:check]
2019-05-21 15:32:51 +00:00
basepython = python3
whitelist_externals = make
commands =
2021-08-23 15:42:51 +00:00
make proto
mypy grpclib examples
deps = -r requirements/check.txt