|
@@ -23,7 +23,6 @@ from io import BytesIO
|
|
import copy
|
|
import copy
|
|
import os
|
|
import os
|
|
import select
|
|
import select
|
|
-import shutil
|
|
|
|
import signal
|
|
import signal
|
|
import subprocess
|
|
import subprocess
|
|
import sys
|
|
import sys
|
|
@@ -63,6 +62,7 @@ from dulwich.tests import (
|
|
)
|
|
)
|
|
from dulwich.tests.utils import (
|
|
from dulwich.tests.utils import (
|
|
skipIfPY3,
|
|
skipIfPY3,
|
|
|
|
+ rmtree_ro,
|
|
)
|
|
)
|
|
from dulwich.tests.compat.utils import (
|
|
from dulwich.tests.compat.utils import (
|
|
CompatTestCase,
|
|
CompatTestCase,
|
|
@@ -83,7 +83,7 @@ class DulwichClientTestBase(object):
|
|
run_git_or_fail(['init', '--quiet', '--bare'], cwd=self.dest)
|
|
run_git_or_fail(['init', '--quiet', '--bare'], cwd=self.dest)
|
|
|
|
|
|
def tearDown(self):
|
|
def tearDown(self):
|
|
- shutil.rmtree(self.gitroot)
|
|
|
|
|
|
+ rmtree_ro(self.gitroot)
|
|
|
|
|
|
def assertDestEqualsSrc(self):
|
|
def assertDestEqualsSrc(self):
|
|
src = repo.Repo(os.path.join(self.gitroot, 'server_new.export'))
|
|
src = repo.Repo(os.path.join(self.gitroot, 'server_new.export'))
|