From 6d117b9da56f38e83000b32104899628333bc3ea Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Tue, 4 Nov 2025 16:41:42 +0100 Subject: [PATCH] LCORE-727: check type hints for unit tests on CI --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38db2e23f..3861bc8bf 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,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/ + 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 security-check: ## Check the project for security issues bandit -c pyproject.toml -r src tests