mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 03:26:37 +03:00
16 lines
297 B
Makefile
16 lines
297 B
Makefile
|
PYTHON = python$(PYTHON_VERSION)
|
||
|
#PYTHON_VERSION = 2.4
|
||
|
|
||
|
TESTDB = psycopg2_test
|
||
|
|
||
|
all:
|
||
|
@:
|
||
|
|
||
|
check:
|
||
|
@echo "* Creating $(TESTDB)"
|
||
|
@if psql -l | grep -q " $(TESTDB) "; then \
|
||
|
dropdb $(TESTDB) >/dev/null; \
|
||
|
fi
|
||
|
createdb $(TESTDB)
|
||
|
PSYCOPG2_TESTDB=$(TESTDB) $(PYTHON) tests/__init__.py --verbose
|