mirror of
https://github.com/django/django.git
synced 2025-07-28 23:54:02 +00:00
Added our own rmtree error handler to make sure we can delete correctly delete .svn directories when running the tests on Windows which are read-only for some reason.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15120 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
0de63c96f2
commit
d18d37ce29
2 changed files with 24 additions and 1 deletions
|
@ -13,6 +13,7 @@ from django.core.management import call_command
|
|||
from django.db.models.loading import load_app
|
||||
from django.template import Template, Context
|
||||
from django.test import TestCase
|
||||
from django.utils._os import rmtree_errorhandler
|
||||
|
||||
|
||||
TEST_ROOT = os.path.normcase(os.path.dirname(__file__))
|
||||
|
@ -97,7 +98,9 @@ class BuildStaticTestCase(StaticFilesTestCase):
|
|||
self.run_collectstatic()
|
||||
|
||||
def tearDown(self):
|
||||
shutil.rmtree(settings.STATIC_ROOT)
|
||||
# Use our own error handler that can handle .svn dirs on Windows
|
||||
shutil.rmtree(settings.STATIC_ROOT, ignore_errors=True,
|
||||
onerror=rmtree_errorhandler)
|
||||
settings.STATIC_ROOT = self.old_root
|
||||
super(BuildStaticTestCase, self).tearDown()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue