Revision
6481
Author
wsanchez@apple.com
Date
2010-10-28 13:35:50 -0700 (Thu, 28 Oct 2010)

Log Message

Nuke pyc files first.

Modified Paths

Diff

Modified: CalendarServer/trunk/test (6480 => 6481)


--- CalendarServer/trunk/test	2010-10-28 20:21:28 UTC (rev 6480)
+++ CalendarServer/trunk/test	2010-10-28 20:35:50 UTC (rev 6481)
@@ -76,4 +76,6 @@
     test_modules="calendarserver twistedcaldav twext txdav ${m_twisted}";
 fi;
 
+find "${wd}" -name \*.pyc -print0 | xargs -0 rm;
+
 cd "${wd}" && "${python}" "${trial}" --rterrors ${random} ${until_fail} ${no_colour} ${coverage} ${test_modules};