summaryrefslogtreecommitdiff
path: root/tests/integration/test_dynamodb.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-04-22 17:16:42 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-04-22 20:55:23 -0500
commit6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb (patch)
tree32f3626643cc6b1e5102a6e627e8142d5dfd912a /tests/integration/test_dynamodb.py
parentf2bf9bbfd8d711e9dfc8ccce83f439d765d484cb (diff)
downloadrequests-cache-6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb.tar.gz
Combine test_cache.py with BaseCacheTest to run these tests for all backends
Diffstat (limited to 'tests/integration/test_dynamodb.py')
-rw-r--r--tests/integration/test_dynamodb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration/test_dynamodb.py b/tests/integration/test_dynamodb.py
index 951d9c8..c6a175e 100644
--- a/tests/integration/test_dynamodb.py
+++ b/tests/integration/test_dynamodb.py
@@ -3,7 +3,8 @@ from unittest.mock import patch
from requests_cache.backends import DynamoDbCache, DynamoDbDict
from tests.conftest import AWS_OPTIONS, fail_if_no_connection
-from tests.integration.test_backends import BaseCacheTest, BaseStorageTest
+from tests.integration.base_cache_test import BaseCacheTest
+from tests.integration.base_storage_test import BaseStorageTest
# Run this test module last, since the DynamoDB container takes the longest to initialize
pytestmark = pytest.mark.order(-1)