From af63ef79f5f2bc770844169580902ff61f54ec98 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Thu, 1 Oct 2020 02:24:19 +0200 Subject: Makefile: Ensure binary is built before running tests --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e67850b..b8fc02b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ .PHONY: test - -test: +test: target/debug/git-todo prove -v -I./t + +target/debug/git-todo: + cargo build -- cgit v1.2.3