From 5cc3d02060f67317049b6e0549c87a407e030e61 Mon Sep 17 00:00:00 2001 From: Slavek Kabrda Date: Wed, 21 Jan 2015 12:57:35 +0100 Subject: Port to Python 3 while maintaining compatibility with Python >= 2.6 Signed-off-by: David Sommerseth --- unit-tests/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'unit-tests/Makefile') diff --git a/unit-tests/Makefile b/unit-tests/Makefile index 95086c1..765fd99 100644 --- a/unit-tests/Makefile +++ b/unit-tests/Makefile @@ -1,5 +1,7 @@ +PY_BIN := python2 + test : - python unit -vv + $(PY_BIN) unit -vv clean : rm -f *.{py[oc],o,so} *~ -- cgit