From 550e514726940c3438289ab1cf1fab680b0e97c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Thu, 19 Dec 2019 16:58:35 +0100 Subject: [PATCH] Python3 needs to use nosetests3 --- Makefile.global | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.global b/Makefile.global index 257683f..4e92e05 100644 --- a/Makefile.global +++ b/Makefile.global @@ -5,7 +5,6 @@ EXTVERSION = $(shell grep default_version $(SELF_DIR)/src/pg/$(EXTENSION) RELEASE_VERSION ?= $(EXTVERSION) SED = sed -NOSETESTS = nosetests AWK = awk PG_CONFIG = pg_config @@ -17,6 +16,8 @@ PYTHON3 ?= $(PG_12plus) ifeq ($(PYTHON3), true) PIP := python3 -m pip +NOSETESTS = nosetests3 else PIP := python2 -m pip +NOSETESTS = nosetests endif