From a1d1b3ec619376b147b7ee21d0fd8917e779cabe Mon Sep 17 00:00:00 2001 From: miigotu Date: Fri, 1 Mar 2024 01:25:11 -0500 Subject: [PATCH] skip rootdirs tests until implemented Signed-off-by: miigotu --- tests/test_rootdirs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_rootdirs.py b/tests/test_rootdirs.py index 7742f3b7f2..33b7bbdce3 100644 --- a/tests/test_rootdirs.py +++ b/tests/test_rootdirs.py @@ -1,7 +1,7 @@ import logging import tempfile from pathlib import Path -from unittest import TestCase +from unittest import skip, TestCase from unittest.mock import patch from sickchill.helper.rootdirs import RootDirectories @@ -9,6 +9,7 @@ logging.basicConfig(format="{levelname} :: {message}", style="{", level=logging.DEBUG) +@skip("Not implemented") class TestRootDirectories(TestCase): path_one = None path_two = None