diff --git a/tests/sentry/preprod/api/endpoints/test_organization_preprod_artifact_assemble.py b/tests/sentry/preprod/api/endpoints/test_organization_preprod_artifact_assemble.py index b7c21caf8573a8..20ab30e1ec10c9 100644 --- a/tests/sentry/preprod/api/endpoints/test_organization_preprod_artifact_assemble.py +++ b/tests/sentry/preprod/api/endpoints/test_organization_preprod_artifact_assemble.py @@ -2,6 +2,7 @@ from unittest.mock import MagicMock, patch import orjson +import pytest from django.core.files.base import ContentFile from django.urls import reverse @@ -655,6 +656,7 @@ def test_assemble_with_metadata( } ) + @pytest.mark.skip(reason="flaky: #109201") @patch( "sentry.preprod.api.endpoints.organization_preprod_artifact_assemble.assemble_preprod_artifact" )