Skip to content

Commit d44606e

Browse files
authored
chore(tests): skip flaky test (#104057)
Skip `tests/sentry/core/endpoints/test_organization_index.py::OrganizationsCreateTest::test_valid_slugs`
1 parent 49fc969 commit d44606e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/sentry/core/endpoints/test_organization_index.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from typing import Any
55
from unittest.mock import MagicMock, patch
66

7+
import pytest
78
from django.test import override_settings
89
from django.urls import reverse
910

@@ -183,6 +184,7 @@ def test_with_default_team_true(self) -> None:
183184
)
184185
OrganizationMemberTeam.objects.get(organizationmember_id=org_member.id, team_id=team.id)
185186

187+
@pytest.mark.skip("flaky: INFRENG-210")
186188
def test_valid_slugs(self) -> None:
187189
valid_slugs = ["santry", "downtown-canada", "1234-foo"]
188190
for input_slug in valid_slugs:

0 commit comments

Comments
 (0)