synapse guest module: generate coverage report

This commit is contained in:
Andrew Ferrazzutti
2025-02-12 16:01:24 -05:00
parent 504f35a65b
commit b429ae9c10
2 changed files with 8 additions and 1 deletions
@@ -29,6 +29,7 @@ dev =
tox
twisted
aiounittest
coverage
# for type checking
mypy == 1.10.0
pydantic == 2.4.2
@@ -38,6 +39,11 @@ dev =
isort == 5.9.3
[coverage:run]
relative_files = True
branch = True
[flake8]
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# for error codes. The ones we ignore are:
+2 -1
View File
@@ -9,7 +9,8 @@ isolated_build = true
extras = dev
commands =
python -m twisted.trial tests
coverage run -m twisted.trial tests
coverage xml
[testenv:check_codestyle]