This commit is contained in:
2026-02-04 12:45:35 -05:00
parent 0a27b763f7
commit 700ea8d6a4
51 changed files with 4715 additions and 2904 deletions
+26
View File
@@ -0,0 +1,26 @@
[tox]
envlist = py, lint, mypy
skipsdist = True
[testenv]
deps = -rrequirements-dev.txt
commands =
pytest -q
[testenv:lint]
description = run linters
deps =
flake8>=5.0
commands =
flake8 hbd tests
[testenv:mypy]
description = run mypy type checks
deps =
mypy>=1.10
commands =
mypy hbd
[flake8]
max-line-length = 88
extend-ignore = E203