[Zope3-checkins] SVN: Zope3/branches/3.3/releases/Zope-test.py Minor tweeks, like not using "o" in tar and not using "p" when running

Jim Fulton jim at zope.com
Mon Jul 17 14:27:58 EDT 2006


Log message for revision 69157:
  Minor tweeks, like not using "o" in tar and not using "p" when running
  tests.
  

Changed:
  U   Zope3/branches/3.3/releases/Zope-test.py

-=-
Modified: Zope3/branches/3.3/releases/Zope-test.py
===================================================================
--- Zope3/branches/3.3/releases/Zope-test.py	2006-07-17 18:27:54 UTC (rev 69156)
+++ Zope3/branches/3.3/releases/Zope-test.py	2006-07-17 18:27:57 UTC (rev 69157)
@@ -8,12 +8,12 @@
 
 do('rm -rf Zope-0.0.0*')
 do('../../zpkgtools/bin/zpkg -caCZope.cfg Zope')
-do('tar xozf Zope-0.0.0.tgz')
+do('tar xzf Zope-0.0.0.tgz')
 os.chdir('Zope-0.0.0')
 do('./configure --prefix `pwd`/z --with-python=%s' %sys.executable)
 do('make install')
 os.chdir('z')
-do("bin/zopetest -vp '!(ZEO|ZODB|BTrees)'")
+do("bin/zopetest -m. -vv")
 do("bin/mkzopeinstance -d`pwd`/../i -uadmin:123 -m SHA1")
 os.chdir('../i')
-do("bin/test --testzope -vp")
+do("bin/test --testzope -vv")



More information about the Zope3-Checkins mailing list