Skip to content

Commit

Permalink
test: update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
0xawaz committed Nov 15, 2024
1 parent 8b3ada9 commit 281f212
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion fhevm-engine/coprocessor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ cleanup:

.PHONY: init_db
init_db:
docker compose up -d
docker compose up -d db
sleep 3
$(DB_URL) sqlx db create
$(DB_URL) sqlx migrate run
$(DB_URL) cargo test setup_test_user -- --nocapture --ignored

.PHONY: start
start:
docker compose up -d

.PHONY: recreate_db
recreate_db:
$(MAKE) cleanup
Expand Down

0 comments on commit 281f212

Please sign in to comment.