Changeset 834
- Timestamp:
- 08/11/07 15:48:22
- Files:
-
- buildout/pcl.buildout/trunk/init_postgresql.py (modified) (2 diffs)
- buildout/pcl.buildout/trunk/pcl-core.cfg (modified) (2 diffs)
- buildout/pcl.buildout/trunk/pclcore-test-environment.cfg (moved) (moved from buildout/pcl.buildout/trunk/test-environment.cfg)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
buildout/pcl.buildout/trunk/init_postgresql.py
r833 r834 20 20 21 21 test_env_tmpl = """\ 22 [ test-environment]22 [pclcore-test-environment] 23 23 PCLCORE_DSN = host=localhost dbname=%(dbname)s port=%(port)s 24 24 """ … … 86 86 # test configuration and run the buildout again so that the 87 87 # test runner gets updated. 88 open(' test-environment.cfg', 'w').write(test_env_tmpl % dict(port=port, dbname=PGDBNAME))88 open('pclcore-test-environment.cfg', 'w').write(test_env_tmpl % dict(port=port, dbname=PGDBNAME)) 89 89 system('./bin/buildout') 90 90 buildout/pcl.buildout/trunk/pcl-core.cfg
r831 r834 2 2 extends = 3 3 dependencies.cfg 4 test-environment.cfg4 pclcore-test-environment.cfg 5 5 index = http://download.zope.org/ppix 6 6 parts = … … 46 46 defaults = ['--auto-color', '-v'] 47 47 script = test 48 environment = test-environment48 environment = pclcore-test-environment
