From ffebcf51c7ff59f4cddede4fc035d5b9ed72f7c8 Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Thu, 6 Nov 2025 14:48:02 -0300 Subject: [PATCH] chore: add mypy to supabase.tests this should've been done in the previous PR, but I missed this part when removing the `ruff` rule --- src/supabase/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/supabase/Makefile b/src/supabase/Makefile index 811678ba..0608f8ca 100644 --- a/src/supabase/Makefile +++ b/src/supabase/Makefile @@ -4,7 +4,7 @@ help:: @echo "Available commands" @echo " help -- (default) print this message" -tests: pytest +tests: mypy pytest help:: @echo " tests -- run all tests for supabase package"