From 395c50759defc9636bd55e43d08dd20cb4350c97 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Wed, 12 Nov 2025 10:54:40 +0100 Subject: [PATCH] LCORE-970: ensure that type hints are checked for integration tetss --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3861bc8bf..80f0bb957 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,6 @@ PYTHON_REGISTRY = pypi run: ## Run the service locally uv run src/lightspeed_stack.py - - test-unit: ## Run the unit tests @echo "Running unit tests..." @echo "Reports will be written to ${ARTIFACT_DIR}" @@ -24,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 + 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 security-check: ## Check the project for security issues bandit -c pyproject.toml -r src tests