Don't run all tests twice
Only verify that custom backend loading works with a simple test.
This commit is contained in:
		@@ -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"
 | 
			
		||||
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)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user