From c6092291ce251bc0627c3f4c3b066171f393540a Mon Sep 17 00:00:00 2001 From: Xingyao Wang Date: Fri, 18 Apr 2025 14:01:36 -0400 Subject: [PATCH] chore: make sure Makefile `make lint` also lint tests (#7933) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a14c5bf7e3..aebdf8d90b 100644 --- a/Makefile +++ b/Makefile @@ -175,7 +175,7 @@ install-pre-commit-hooks: lint-backend: @echo "$(YELLOW)Running linters...$(RESET)" - @poetry run pre-commit run --files openhands/**/* agenthub/**/* evaluation/**/* --show-diff-on-failure --config $(PRE_COMMIT_CONFIG_PATH) + @poetry run pre-commit run --files openhands/**/* evaluation/**/* tests/**/* --show-diff-on-failure --config $(PRE_COMMIT_CONFIG_PATH) lint-frontend: @echo "$(YELLOW)Running linters for frontend...$(RESET)"