[Zope-Checkins] SVN: Zope/branches/2.10/test.py don't muck up the environ if Zope libs are already available

Rob Miller ra at burningman.com
Thu Sep 11 19:27:38 EDT 2008


Log message for revision 91070:
  don't muck up the environ if Zope libs are already available
  

Changed:
  U   Zope/branches/2.10/test.py

-=-
Modified: Zope/branches/2.10/test.py
===================================================================
--- Zope/branches/2.10/test.py	2008-09-11 21:10:37 UTC (rev 91069)
+++ Zope/branches/2.10/test.py	2008-09-11 23:27:37 UTC (rev 91070)
@@ -53,7 +53,11 @@
         zhome = scriptdir
     shome = os.path.join(zhome, 'lib', 'python')
 
-sys.path.insert(0, shome)
+# add SOFTWARE_HOME to sys.path, but only if Zope isn't already available
+try:
+    import Zope2
+except ImportError:
+    sys.path.insert(0, shome)
 
 defaults = '--tests-pattern ^tests$ -v'.split()
 defaults += ['-m',



More information about the Zope-Checkins mailing list