[Zodb-checkins] SVN: ZODB/trunk/setup.py Repair zope.interface and zope.proxy tests.

Tim Peters tim.one at comcast.net
Mon Mar 21 15:20:12 EST 2005


Log message for revision 29627:
  Repair zope.interface and zope.proxy tests.
  
  test.py ran these tests ran after "setup build_ext -i", but
  not after "setup build".  Repaired by teaching setup.py to
  copy more stuff out of the relevant directories.
  

Changed:
  U   ZODB/trunk/setup.py

-=-
Modified: ZODB/trunk/setup.py
===================================================================
--- ZODB/trunk/setup.py	2005-03-21 19:44:05 UTC (rev 29626)
+++ ZODB/trunk/setup.py	2005-03-21 20:20:11 UTC (rev 29627)
@@ -152,7 +152,12 @@
             "transaction", "transaction.tests",
             "ThreadedAsync",
             "zdaemon", "zdaemon.tests",
-            "zope", "zope.interface", "zope.testing", "zope.proxy",
+
+            "zope",
+            "zope.interface", "zope.interface.tests",
+            "zope.proxy", "zope.proxy.tests",
+            "zope.testing",
+
             "ZopeUndo", "ZopeUndo.tests",
             "ZConfig", "ZConfig.tests",
             "ZConfig.components",
@@ -197,6 +202,7 @@
         "ZODB/tests",
         "zdaemon",
         "zdaemon/tests",
+        "zope/interface", "zope/interface/tests",
         ]:
         dir = convert_path(dir)
         inputdir = os.path.join("src", dir)



More information about the Zodb-checkins mailing list