Commit ff5ff8fc authored by Tim Peters's avatar Tim Peters

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.
parent e457b326
...@@ -152,7 +152,12 @@ packages = ["BTrees", "BTrees.tests", ...@@ -152,7 +152,12 @@ packages = ["BTrees", "BTrees.tests",
"transaction", "transaction.tests", "transaction", "transaction.tests",
"ThreadedAsync", "ThreadedAsync",
"zdaemon", "zdaemon.tests", "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", "ZopeUndo", "ZopeUndo.tests",
"ZConfig", "ZConfig.tests", "ZConfig", "ZConfig.tests",
"ZConfig.components", "ZConfig.components",
...@@ -197,6 +202,7 @@ def copy_other_files(cmd, outputbase): ...@@ -197,6 +202,7 @@ def copy_other_files(cmd, outputbase):
"ZODB/tests", "ZODB/tests",
"zdaemon", "zdaemon",
"zdaemon/tests", "zdaemon/tests",
"zope/interface", "zope/interface/tests",
]: ]:
dir = convert_path(dir) dir = convert_path(dir)
inputdir = os.path.join("src", dir) inputdir = os.path.join("src", dir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment