From 7f9b928ba561239ed92c5448457d495d635e5310 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Wed, 23 Nov 2022 00:55:09 -0800 Subject: [PATCH] New pylint stubbornly wants setUp/tearDown-spanning withs --- test_git_cache.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test_git_cache.py b/test_git_cache.py index e97a788..529ac94 100644 --- a/test_git_cache.py +++ b/test_git_cache.py @@ -37,9 +37,9 @@ def _commit_file( class TestGitCache(unittest.TestCase): def setUp(self) -> None: - self.xdgcache = tempfile.TemporaryDirectory( + self.xdgcache = tempfile.TemporaryDirectory( # pylint: disable=consider-using-with prefix='git_cache_test-cache-') - self.xdgdata = tempfile.TemporaryDirectory( + self.xdgdata = tempfile.TemporaryDirectory( # pylint: disable=consider-using-with prefix='git_cache_test-data-') self.old_XDG_CACHE_HOME = os.environ.get('XDG_CACHE_HOME') self.old_XDG_DATA_HOME = os.environ.get('XDG_DATA_HOME') @@ -54,7 +54,8 @@ class TestGitCache(unittest.TestCase): os.environ['BACKOFF_MAX_TIME'] = '0' os.environ['FORCE_WARNING_TIME'] = '0' # ONLY FOR TEST USE! - self.tempdir = tempfile.TemporaryDirectory(prefix='git_cache_test-') + self.tempdir = tempfile.TemporaryDirectory( # pylint: disable=consider-using-with + prefix='git_cache_test-') self.upstream = os.path.join(self.tempdir.name, 'upstream') subprocess.run(['git', '-c', 'init.defaultBranch=main', 'init', self.upstream], check=True) -- 2.44.1