[Checkins] SVN: relstorage/trunk/buildout.cfg Include psycopg and MySQL-python in the test buildout

Shane Hathaway shane at hathawaymix.org
Tue Sep 22 16:22:30 EDT 2009


Log message for revision 104437:
  Include psycopg and MySQL-python in the test buildout
  

Changed:
  U   relstorage/trunk/buildout.cfg

-=-
Modified: relstorage/trunk/buildout.cfg
===================================================================
--- relstorage/trunk/buildout.cfg	2009-09-22 20:17:11 UTC (rev 104436)
+++ relstorage/trunk/buildout.cfg	2009-09-22 20:22:30 UTC (rev 104437)
@@ -1,23 +1,28 @@
 [buildout]
 develop = .
 parts = test python coverage-test coverage-report
+eggs = relstorage
+       psycopg2
+       MySQL-python
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = relstorage
+eggs = ${buildout:eggs}
 
 [python]
 recipe = zc.recipe.egg
-eggs = relstorage
-interpreter = python
+eggs = ${buildout:eggs}
+interpreter = py
 
 [coverage-test]
 recipe = zc.recipe.testrunner
-eggs = relstorage
+eggs = ${buildout:eggs}
 defaults = ['--coverage', '../../coverage']
 
 [coverage-report]
 recipe = zc.recipe.egg
-eggs = z3c.coverage
+eggs =
+    ${buildout:eggs}
+    z3c.coverage
 scripts = coverage=coverage-report
 arguments = ('coverage', 'coverage/report')



More information about the checkins mailing list