Skip to content

Commit

Permalink
fix(tests): Disable flaky test (#80646)
Browse files Browse the repository at this point in the history
This test failed around midnight UTC, likely a UTC bug.

<!-- Describe your PR here. -->
  • Loading branch information
wedamija authored Nov 13, 2024
1 parent de77156 commit 108371a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from unittest import mock

import pytest
from django.urls import reverse

from sentry import options
Expand Down Expand Up @@ -494,6 +495,7 @@ def test_invalid_issue_query_conditions_in_discover_widget(self):
assert "queries" in response.data, response.data
assert response.data["queries"][0]["conditions"], response.data

@pytest.mark.skip("Flaky - utc bug")
def test_timestamp_query_with_timezone(self):
data = {
"title": "Timestamp filter",
Expand Down

0 comments on commit 108371a

Please sign in to comment.