From 843008b9382adf2b595c8c6e24c1afc060417ef3 Mon Sep 17 00:00:00 2001 From: leynier Date: Sat, 23 Oct 2021 02:50:29 -0400 Subject: [PATCH] chore: split some make rules --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 6b842b54..4e7d2571 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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"