Add benchmarks (#148)

Add asv based benchmarks to guide future optimisation work.
This commit is contained in:
Adrian Garcia Badaracco
2020-09-19 09:28:16 -05:00
committed by GitHub
parent 0028cc384a
commit a3f5f21738
6 changed files with 335 additions and 92 deletions

View File

@@ -33,6 +33,7 @@ pytest-asyncio = "^0.12.0"
pytest-cov = "^2.9.0"
pytest-mock = "^3.1.1"
tox = "^3.15.1"
asv = "^0.4.2"
[tool.poetry.scripts]
protoc-gen-python_betterproto = "betterproto.plugin:main"
@@ -47,6 +48,7 @@ test = { cmd = "pytest --cov src", help = "Run tests" }
types = { cmd = "mypy src --ignore-missing-imports", help = "Check types with mypy" }
format = { cmd = "black . --exclude tests/output_", help = "Apply black formatting to source code" }
clean = { cmd = "rm -rf .coverage .mypy_cache .pytest_cache dist betterproto.egg-info **/__pycache__ tests/output_*", help = "Clean out generated files from the workspace" }
bench = { shell = "asv run master^! && asv run HEAD^! && asv compare master HEAD", help = "Benchmark current commit vs. master branch"}
# CI tasks
full-test = { shell = "poe generate && tox", help = "Run tests with multiple pythons" }