|
@@ -3,6 +3,7 @@ from datetime import datetime, timezone
|
|
from io import BytesIO
|
|
from io import BytesIO
|
|
from uuid import uuid4
|
|
from uuid import uuid4
|
|
|
|
|
|
|
|
+import pytest
|
|
from django.urls import reverse
|
|
from django.urls import reverse
|
|
|
|
|
|
from sentry.models import ArtifactBundle, DebugIdArtifactBundle, File, ReleaseFile, SourceFileType
|
|
from sentry.models import ArtifactBundle, DebugIdArtifactBundle, File, ReleaseFile, SourceFileType
|
|
@@ -290,6 +291,9 @@ class ArtifactLookupTest(APITestCase):
|
|
assert response[0]["headers"] == file_headers
|
|
assert response[0]["headers"] == file_headers
|
|
self.assert_download_matches_file(response[0]["url"], file)
|
|
self.assert_download_matches_file(response[0]["url"], file)
|
|
|
|
|
|
|
|
+ @pytest.mark.skip(
|
|
|
|
+ reason="flakey: https://sentry.sentry.io/issues/4024152695/?cursor=0%3A200%3A0&project=2423079"
|
|
|
|
+ )
|
|
def test_query_by_url_from_artifact_index(self):
|
|
def test_query_by_url_from_artifact_index(self):
|
|
self.login_as(user=self.user)
|
|
self.login_as(user=self.user)
|
|
|
|
|