From 51bf95f00d7c0817ce4d6ea9e02b03929b3295f6 Mon Sep 17 00:00:00 2001 From: Unrud Date: Thu, 11 Aug 2016 00:19:28 +0200 Subject: [PATCH] Don't run all tests twice Only verify that custom backend loading works with a simple test. --- radicale/tests/test_base.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index 8312c255..05d45e73 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -735,6 +735,10 @@ class TestMultiFileSystem(BaseFileSystemTest, BaseRequestsMixIn): storage_type = "multifilesystem" -class TestCustomStorageSystem(BaseFileSystemTest, BaseRequestsMixIn): - """Test BaseRequests on custom backend.""" - storage_type = "tests.custom.storage" \ No newline at end of file +class TestCustomStorageSystem(BaseFileSystemTest): + """Test custom backend loading.""" + storage_type = "tests.custom.storage" + + def test_root(self): + """A simple test to verify that the custom backend works.""" + BaseRequestsMixIn.test_root(self)