From 4be2b75816890c0e64430e0bb2249c868f8edc0d Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Mon, 11 Dec 2017 02:22:02 +0000 Subject: [PATCH] Dropped PYTHONPATH propagation in 'make check' Psycopg doesn't have other dependencies outside the stdlib so what's there is probably just noise. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 07fbc215..f22ad6be 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ env: $(MAKE) -C doc $@ check: - PYTHONPATH=$(BUILD_DIR):$(PYTHONPATH) $(PYTHON) -c "import tests; tests.unittest.main(defaultTest='tests.test_suite')" --verbose + PYTHONPATH=$(BUILD_DIR) $(PYTHON) -c "import tests; tests.unittest.main(defaultTest='tests.test_suite')" --verbose testdb: @echo "* Creating $(TESTDB)"