From a411f853546835c09e1c871252d485614c1bdec0 Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Wed, 1 Dec 2010 21:29:33 +0100 Subject: [PATCH] Removed default test database from Makefile The default is already in test/__init__.py and the Makefile was overwriting the PSYCOPG2_TESTDB env variable. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 16298d60..8ebbcd7e 100644 --- a/Makefile +++ b/Makefile @@ -29,8 +29,6 @@ ENV_DIR = $(shell pwd)/env/py-$(PYTHON_VERSION) ENV_BIN = $(ENV_DIR)/bin ENV_LIB = $(ENV_DIR)/lib -TESTDB = psycopg2_test - SOURCE_C := $(wildcard psycopg/*.c psycopg/*.h) SOURCE_PY := $(wildcard lib/*.py) SOURCE_DOC := $(wildcard doc/src/*.rst) @@ -71,7 +69,7 @@ docs-txt: doc/psycopg2.txt sdist: $(SDIST) runtests: package - PSYCOPG2_TESTDB=$(TESTDB) PYTHONPATH=$(BUILD_DIR):.:$(PYTHONPATH) $(PYTHON) tests/__init__.py --verbose + PYTHONPATH=$(BUILD_DIR):.:$(PYTHONPATH) $(PYTHON) tests/__init__.py --verbose # The environment is currently required to build the documentation.