|
@@ -9,6 +9,7 @@ from sentry.utils import json
|
|
|
from sentry_plugins.amazon_sqs.plugin import AmazonSQSPlugin
|
|
|
|
|
|
|
|
|
+@pytest.mark.skip(reason="https://github.com/getsentry/sentry/issues/44858")
|
|
|
class AmazonSQSPluginTest(PluginTestCase):
|
|
|
@cached_property
|
|
|
def plugin(self):
|
|
@@ -134,7 +135,6 @@ class AmazonSQSPluginTest(PluginTestCase):
|
|
|
|
|
|
@patch("sentry_plugins.amazon_sqs.plugin.logger")
|
|
|
@patch("boto3.client")
|
|
|
- @pytest.mark.skip(reason="https://github.com/getsentry/sentry/issues/44858")
|
|
|
def test_invalid_s3_bucket(self, mock_client, logger):
|
|
|
self.plugin.set_option("s3_bucket", "bad_bucket", self.project)
|
|
|
mock_client.return_value.put_object.side_effect = ClientError(
|