We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e555aed commit 7d54e86Copy full SHA for 7d54e86
client/datalake/tests/conftest.py
@@ -21,12 +21,14 @@
21
try:
22
from moto import mock_aws
23
except ImportError:
24
- from moto import mock_s3 as mock_aws # ugh
+ # Ugh. This is necessary because the client tests rely on a later version
25
+ # of moto than the ingester and api tests. And that newer version changed
26
+ # the object mock_s3 -> mock_aws.
27
+ from moto import mock_s3 as mock_aws
28
29
pass
30
31
- # from moto import mock_aws
32
import boto3
33
from six.moves.urllib.parse import urlparse
34
import json
0 commit comments