[Zope-CVS] CVS: Packages/TestScripts - autotester.py:1.11
Chris Withers
chrisw@nipltd.com
Mon, 29 Jul 2002 11:40:35 -0400
Update of /cvs-repository/Packages/TestScripts
In directory cvs.zope.org:/tmp/cvs-serv27521
Modified Files:
autotester.py
Log Message:
The sandbox must now exist before it is used...
=== Packages/TestScripts/autotester.py 1.10 => 1.11 ===
# blow away the sandbox
chdir(home)
- try:
- rmtree(sandbox)
- except:
- pass
+ # the sandbox MUST now exist before this runs for the first time...
+ rmtree(sandbox)
# make an empty sand box
makedirs(sandbox)