From b9ebf47c7cfd6ca0ba29c25181789dd383a73f1b Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 19 Sep 2020 09:40:41 -0400 Subject: [PATCH] explicitly use python3 to run tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f415b4..57b32da 100644 --- a/Makefile +++ b/Makefile @@ -136,6 +136,6 @@ clean: test: libhardened_malloc.so make -C test/ - -python -m unittest discover --start-directory test/ + -python3 -m unittest discover --start-directory test/ .PHONY: check clean tidy test