]> git.scottworley.com Git - git-cache/commitdiff
New pylint stubbornly wants setUp/tearDown-spanning withs
authorScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 08:55:09 +0000 (00:55 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 08:55:09 +0000 (00:55 -0800)
test_git_cache.py

index e97a788cd726b307791c95e55a1a00a90d4c1939..529ac94334e97ad9197e6e073f590689f25e7994 100644 (file)
@@ -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)