You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to an AWS/boto change, several awsimple tests no longer work when using moto to mock AWS. This seems to mainly be around SQS. See getmoto/moto#6286 for details.
As a temporary workaround I put if not is_mock(): to gate the execution of several tests (mainly SQS tests). This was necessary to get CI/CD (GitHub Actions) to pass.
Once this is resolved, go back through all the tests and remove the if not is_mock(): where possible. Again, this will probably be for the SQS tests.
Note that using regular AWS (not moto) performs all the testing. It is recommended to use regular AWS frequently until this is resolved.
The text was updated successfully, but these errors were encountered:
Due to an AWS/boto change, several awsimple tests no longer work when using moto to mock AWS. This seems to mainly be around SQS. See getmoto/moto#6286 for details.
As a temporary workaround I put
if not is_mock():
to gate the execution of several tests (mainly SQS tests). This was necessary to get CI/CD (GitHub Actions) to pass.Once this is resolved, go back through all the tests and remove the
if not is_mock():
where possible. Again, this will probably be for the SQS tests.Note that using regular AWS (not moto) performs all the testing. It is recommended to use regular AWS frequently until this is resolved.
The text was updated successfully, but these errors were encountered: