From 43f2ca9480dc78efd11c5fff41dbaade85355514 Mon Sep 17 00:00:00 2001 From: chatton Date: Tue, 26 Sep 2023 10:37:05 +0100 Subject: [PATCH] chore: use python3 instead of python --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 282838cdb46..4e883c8d8bb 100644 --- a/Makefile +++ b/Makefile @@ -194,7 +194,7 @@ $(CHECK_TEST_TARGETS): run-tests ARGS += -tags "$(test_tags)" run-tests: - @ARGS="$(ARGS)" TEST_PACKAGES=$(TEST_PACKAGES) EXTRA_ARGS="$(EXTRA_ARGS)" python ./scripts/go-test-all.py + @ARGS="$(ARGS)" TEST_PACKAGES=$(TEST_PACKAGES) EXTRA_ARGS="$(EXTRA_ARGS)" python3 ./scripts/go-test-all.py .PHONY: run-tests test test-all $(TEST_TARGETS)