|
From: <as...@us...> - 2009-08-23 19:12:29
|
Revision: 7544
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7544&view=rev
Author: astraw
Date: 2009-08-23 19:12:20 +0000 (Sun, 23 Aug 2009)
Log Message:
-----------
erase /home/astraw/.matplotlib before testing
Modified Paths:
--------------
trunk/matplotlib/test/_buildbot_test.py
Modified: trunk/matplotlib/test/_buildbot_test.py
===================================================================
--- trunk/matplotlib/test/_buildbot_test.py 2009-08-23 18:59:07 UTC (rev 7543)
+++ trunk/matplotlib/test/_buildbot_test.py 2009-08-23 19:12:20 UTC (rev 7544)
@@ -10,6 +10,9 @@
if not os.path.exists(TARGET):
raise RuntimeError('the virtualenv target directory was not found')
+check_call('%s -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)"'%TARGET_py)
+
+shutil.rmtree( os.expanduser( os.path.join('~','.matplotlib')))
TARGET_py = os.path.join(TARGET,'bin','python')
check_call('%s run-mpl-test.py --all'%TARGET_py,
cwd='test')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|