Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion queue_services/business-digital-credentials/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ run: ## Run the project in local
business-digital-credentials

test: ## Unit testing
poetry run pytest --cov=src --cov-report=xml --cov-report=html --cov-report=term --cov-report=term-missing
poetry run pytest --cov-report=xml --cov-report=html --cov-report=term-missing

coverage-check:
poetry run pytest --cov=src --cov-fail-under=85
Expand Down
3 changes: 3 additions & 0 deletions queue_services/business-digital-credentials/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ docstring-quotes = "double"
[tool.ruff.lint.extend-per-file-ignores]
"**/__init__.py" = ["F401"] # used for imports

[tool.pytest.ini_options]
addopts = "--cov=src"

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
3 changes: 3 additions & 0 deletions queue_services/business-emailer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,9 @@ docstring-quotes = "double"
]
"src/business_emailer/services/namex.py" = ["I001"] # ignoring 'unordered' imports

[tool.pytest.ini_options]
addopts = "--cov=src"

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
Loading