skip test if dir exists

Signed-off-by: florian on nixos (Florian Brandes) <florian.brandes@posteo.de>
This commit is contained in:
florian on nixos (Florian Brandes) 2022-03-24 12:24:26 +01:00 committed by Florian Brandes
parent 4fe966f534
commit b5f77fd6e7

View File

@ -144,7 +144,9 @@ class TestTasks(DirectoriesMixin, TestCase):
os.path.dirname(__file__), "samples", "patch-code-t.pdf"
)
nonexistingdir = "/nowhere"
if not os.path.isdir(nonexistingdir):
if os.path.isdir(nonexistingdir):
self.skipTest("non-existing dir exists")
else:
with self.assertLogs("paperless.tasks", level="WARNING") as cm:
tasks.save_to_dir(test_file, nonexistingdir)
self.assertEqual(