2017-11-15 21:49:57 +00:00
|
|
|
[tox]
|
2024-04-18 15:11:30 +00:00
|
|
|
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
|
2019-04-29 19:46:44 +00:00
|
|
|
commands = py.test
|
2019-11-26 11:01:25 +00:00
|
|
|
deps = -r requirements/test.txt
|
2017-11-15 21:49:57 +00:00
|
|
|
|
2024-04-18 15:11:30 +00:00
|
|
|
[testenv:py38]
|
2019-04-29 19:46:44 +00:00
|
|
|
commands = py.test --cov
|
|
|
|
|
2019-11-26 10:31:12 +00:00
|
|
|
[testenv:lint]
|
2019-05-21 15:32:51 +00:00
|
|
|
basepython = python3
|
2019-05-01 17:00:11 +00:00
|
|
|
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
|
2019-11-26 11:01:25 +00:00
|
|
|
deps = -r requirements/check.txt
|