We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be23fb9 commit 53f4ed4Copy full SHA for 53f4ed4
tests/unit/test_active.py
@@ -5,6 +5,7 @@
5
6
from activestorage.active import Active
7
from activestorage.active import load_from_s3
8
+from activestorage.config import *
9
from botocore.exceptions import EndpointConnectionError as botoExc
10
11
@@ -100,6 +101,7 @@ def test_lock():
100
101
assert active.lock is False
102
103
104
+@pytest.mark.skipif(USE_S3 = True, reason="it will look for silly bucket")
105
def test_load_from_s3():
106
"""Test basic load from S3 without loading from S3."""
107
uri = "s3://bucket/file.nc"
0 commit comments