~abentley/storm/executemany

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Andreas Hasenack
  • Date: 2012-02-01 17:02:31 UTC
  • Revision ID: andreas@canonical.com-20120201170231-ad1ijx3mu6o4tzea
Allow using postgresql on another port for the test suite. [trivial] [r=free]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
PYTHON ?= python
2
2
PYDOCTOR ?= pydoctor
 
3
PGPORT ?= 5432
3
4
 
4
5
TEST_COMMAND = $(PYTHON) setup.py test
5
6
 
6
7
STORM_POSTGRES_URI = postgres:storm_test
7
 
STORM_POSTGRES_HOST_URI = postgres://localhost/storm_test
 
8
STORM_POSTGRES_HOST_URI = postgres://localhost:$(PGPORT)/storm_test
8
9
STORM_MYSQL_URI = mysql:storm_test
9
10
STORM_MYSQL_HOST_URI = mysql://localhost/storm_test
10
11