Skip to content

Commit 629244f

Browse files
committed
Remove unused navigate-only acceptance tests
1 parent 8eb4dae commit 629244f

14 files changed

+1
-970
lines changed

tests/acceptance/test_account_settings.py

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,6 @@ def setUp(self) -> None:
2121
)
2222
self.login_as(self.user)
2323

24-
def test_account_security_settings(self) -> None:
25-
with (
26-
self.options({"system.url-prefix": self.browser.live_server_url}),
27-
self.feature("organizations:onboarding"),
28-
):
29-
self.browser.get("/settings/account/security/")
30-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
31-
3224
def test_account_notifications(self) -> None:
3325
with (
3426
self.options({"system.url-prefix": self.browser.live_server_url}),
@@ -39,28 +31,3 @@ def test_account_notifications(self) -> None:
3931

4032
self.browser.click_when_visible('[data-test-id="fine-tuning"]')
4133
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
42-
43-
def test_account_emails_settings(self) -> None:
44-
with self.feature("organizations:onboarding"):
45-
self.browser.get("/settings/account/emails/")
46-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
47-
48-
def test_account_subscriptions_settings(self) -> None:
49-
with self.feature("organizations:onboarding"):
50-
self.browser.get("/settings/account/subscriptions/")
51-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
52-
53-
def test_account_authorizations_settings(self) -> None:
54-
with self.feature("organizations:onboarding"):
55-
self.browser.get("/account/authorizations/")
56-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
57-
58-
def test_account_identities_settings(self) -> None:
59-
with self.feature("organizations:onboarding"):
60-
self.browser.get("/settings/account/identities/")
61-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
62-
63-
def test_close_account(self) -> None:
64-
with self.options({"system.url-prefix": self.browser.live_server_url}):
65-
self.browser.get("/account/remove/")
66-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')

tests/acceptance/test_incidents.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
from sentry.incidents.logic import update_incident_status
44
from sentry.incidents.models.incident import IncidentStatus, IncidentStatusMethod
55
from sentry.testutils.cases import AcceptanceTestCase, SnubaTestCase
6-
from sentry.testutils.helpers.datetime import before_now
76
from sentry.testutils.silo import no_silo_test
87

98
FEATURE_NAME = ["organizations:incidents", "organizations:performance-view"]
109

11-
event_time = before_now(days=3)
12-
1310

1411
@no_silo_test
1512
class OrganizationIncidentsListTest(AcceptanceTestCase, SnubaTestCase):
@@ -18,11 +15,6 @@ def setUp(self) -> None:
1815
self.login_as(self.user)
1916
self.path = f"/organizations/{self.organization.slug}/issues/alerts/"
2017

21-
def test_empty_incidents(self) -> None:
22-
with self.feature(FEATURE_NAME):
23-
self.browser.get(self.path)
24-
self.browser.wait_until_not('[data-test-id="loading-indicator"]')
25-
2618
def test_incidents_list(self) -> None:
2719
alert_rule = self.create_alert_rule(name="Alert Rule #1")
2820
incident = self.create_incident(

tests/acceptance/test_oauth_authorize.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

tests/acceptance/test_organization_alert_rule_details.py

Lines changed: 0 additions & 36 deletions
This file was deleted.

tests/acceptance/test_organization_alert_rules.py

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)