We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42aa4d commit 7746580Copy full SHA for 7746580
src/auth/Makefile
@@ -2,10 +2,15 @@ help::
2
@echo "Available commands"
3
@echo " help -- (default) print this message"
4
5
-tests: mypy pytest
+tests: ruff mypy pytest
6
help::
7
@echo " tests -- run all tests for supabase_auth"
8
9
+ruff:
10
+ uv run ruff check tests src/supabase_auth
11
+help::
12
+ @echo " ruff -- run ruff checks"
13
+
14
pytest: start-infra
15
uv run --package supabase_auth pytest --cov=./ --cov-report=xml --cov-report=html -vv
16
0 commit comments