2022.6.17 - Unittests #84

Merged
edraft merged 51 commits from 2022.6.17 into 2022.6 2022-06-27 10:03:55 +02:00
Showing only changes of commit 6c1d7a3b29 - Show all commits

View File

@ -43,7 +43,6 @@ class CLITestSuite(unittest.TestSuite):
self.addTests(loader.loadTestsFromTestCase(RemoveTestCase))
def _setup(self):
print(f'Setup {__name__}')
try:
if os.path.exists(PLAYGROUND_PATH):
shutil.rmtree(os.path.abspath(os.path.join(PLAYGROUND_PATH, '../')))
@ -54,7 +53,6 @@ class CLITestSuite(unittest.TestSuite):
print(f'Setup of {__name__} failed: {traceback.format_exc()}')
def _cleanup(self):
print(f'Cleanup {__name__}')
try:
if os.path.exists(PLAYGROUND_PATH):
shutil.rmtree(os.path.abspath(os.path.join(PLAYGROUND_PATH, '../')))