From b5f77fd6e7b41b4023655ad35db13f8e21082bdc Mon Sep 17 00:00:00 2001 From: "florian on nixos (Florian Brandes)" Date: Thu, 24 Mar 2022 12:24:26 +0100 Subject: [PATCH] skip test if dir exists Signed-off-by: florian on nixos (Florian Brandes) --- src/documents/tests/test_tasks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/documents/tests/test_tasks.py b/src/documents/tests/test_tasks.py index fcb6909ff..a23e00c93 100644 --- a/src/documents/tests/test_tasks.py +++ b/src/documents/tests/test_tasks.py @@ -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(