Merge branch 'main' into refactor-repo

This commit is contained in:
Paul Gauthier 2023-07-24 14:24:20 -03:00
commit 94a271d522
2 changed files with 7 additions and 4 deletions

View file

@ -25,10 +25,7 @@ class TestCommands(TestCase):
def tearDown(self):
os.chdir(self.original_cwd)
try:
shutil.rmtree(self.tempdir)
except OSError:
pass # Ignore errors (Windows)
shutil.rmtree(self.tempdir, ignore_errors=True)
def test_cmd_add(self):
# Initialize the Commands and InputOutput objects