From c62d9be2f24ad0886bbe73ccee44d86606fd91de Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Wed, 12 Nov 2025 11:18:22 +0100 Subject: [PATCH] LCORE-970: ensure that type hints are checked for end to end tets --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 80f0bb957..6e43bd6cc 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ test-e2e: ## Run end to end tests for the service script -q -e -c "uv run behave --color --format pretty --tags=-skip -D dump_errors=true @tests/e2e/test_list.txt" check-types: ## Checks type hints in sources - uv run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports --disable-error-code attr-defined src/ tests/unit tests/integration + uv run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports --disable-error-code attr-defined src/ tests/unit tests/integration tests/e2e/ security-check: ## Check the project for security issues bandit -c pyproject.toml -r src tests