From 8ff7d9f7df15a6dd90123e63f2fd2bf916dba3b6 Mon Sep 17 00:00:00 2001 From: Chase Sommer Date: Mon, 28 Mar 2022 18:41:26 -0400 Subject: [PATCH] Changed python to python3 in Makefile. When running `make test`, it gave error make: execvp: python: Permission denied make: *** [Makefile:23: test] Error 127 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f170bd..4f940f0 100644 --- a/Makefile +++ b/Makefile @@ -20,4 +20,4 @@ format: black *.py test: - python -m pytest -vv --cov=hello test_hello.py + python3 -m pytest -vv --cov=hello test_hello.py