我有以下功能。
def test_download(test_args):
mock = mock_s3()
mock.start()
conn = boto3.resource('s3', region_name='us-west-2')
conn.create_bucket(Bucket=test_args.source_bucket)
s3.Object(test_args.source_bucket, 'testing.txt').put(
Body=open("testing.txt", 'rb'))
handler_client = HandlerClient(test_args)
handler_client.get_s3_file()
使用from moto import mock_s3
当我去测试时,我得到了错误。
def add_auth(self, request):
if self.credentials is None:
> raise NoCredentialsError
E botocore.exceptions.NoCredentialsError: Unable to locate credentials at line
> `conn.create_bucket(Bucket=test_args.source_bucket)`
我已经尝试过装饰器以及
with moto.mock_s3():
都得到相同的错误。我怎样才能解决这个问题来创建一个假的桶把一个项目放在里面。