Skip to content

Commit

Permalink
chore: split some make rules
Browse files Browse the repository at this point in the history
  • Loading branch information
leynier committed Oct 23, 2021
1 parent d1f5fc7 commit 843008b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
build_sync:
poetry run unasync gotrue tests

install:
poetry install

tests: install tests_only tests_pre_commit
echo "Done"

tests_pre_commit:
poetry run pre-commit run --all-files
Expand All @@ -18,5 +14,10 @@ run_infra:
docker-compose down &&\
docker-compose up -d

build_run_tests: build_sync run_infra tests
run_tests: run_infra tests

build_sync:
poetry run unasync gotrue tests

build_run_tests: build_sync run_tests
echo "Done"

0 comments on commit 843008b

Please sign in to comment.