From 88d5fc4e98c51437350b68643548ff28d1d5fd9c Mon Sep 17 00:00:00 2001 From: Sven Sager Date: Wed, 18 Sep 2024 09:59:45 +0200 Subject: [PATCH] build: Add test target as dependency of all target in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c44674..07dca0b 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ endif SYSTEM_PYTHON = python3 PYTHON = $(or $(wildcard $(VENV_PATH)/bin/python), $(SYSTEM_PYTHON)) -all: build docs +all: test build docs .PHONY: all