我正在尝试测试一个使用 boto3 中的 create_stack() 上传云形成的函数。
对于测试,我使用的是框架 moto。
对于测试,我使用 pytest 夹具在 yaml 中创建了一个 template_data:
@pytest.fixture(scope='function')
def template_body_data():
'The Cloud Formation template'
template_data = {
'Resources': {
'MyInstance': {
'Type': 'AWS::EC2::Instance',
'Properties': {'ImageId': 'ami-a4c7edb2', 'InstanceType': 't2.micro'},
}
}
}
return template_data
我所有的测试都有效。
问题是我收到此警告:
/home/myprofile/.cache/pypoetry/virtualenvs/cl-uploader-12nYBdPj-py3.8/lib/python3.8/site-packages/moto/ec2/models.py:517: PendingDeprecationWarning: Could not find AMI with image-id:ami-a4c7edb2, in the near future this will cause an error.
Use ec2_backend.describe_images() to find suitable image for your test
我怎样才能解决这个问题?