From 1eeb99211837181a6dbbf09461fa9d03dda2040d Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Wed, 23 Nov 2022 08:09:37 +0100 Subject: [PATCH] Don't create unused testfiles directory --- tests/checkupdates.TestCase | 2 -- tests/rewritemeta.TestCase | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/checkupdates.TestCase b/tests/checkupdates.TestCase index e6b2b6d9..7ffc548a 100755 --- a/tests/checkupdates.TestCase +++ b/tests/checkupdates.TestCase @@ -27,8 +27,6 @@ class CheckupdatesTest(unittest.TestCase): def setUp(self): logging.basicConfig(level=logging.DEBUG) self.basedir = localmodule / 'tests' - self.tmpdir = localmodule / '.testfiles' - self.tmpdir.mkdir(exist_ok=True) # TODO: Python3.6: Accepts a path-like object. os.chdir(str(self.basedir)) diff --git a/tests/rewritemeta.TestCase b/tests/rewritemeta.TestCase index 309e2f45..4fc4d8ac 100755 --- a/tests/rewritemeta.TestCase +++ b/tests/rewritemeta.TestCase @@ -29,8 +29,6 @@ class RewriteMetaTest(unittest.TestCase): def setUp(self): logging.basicConfig(level=logging.DEBUG) self.basedir = localmodule / 'tests' - self.tmpdir = localmodule / '.testfiles' - self.tmpdir.mkdir(exist_ok=True) # TODO: Python3.6: Accepts a path-like object. os.chdir(str(self.basedir))