Skip to content

Commit

Permalink
skip sentry 9 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lynnagara committed May 3, 2019
1 parent 04004cc commit 2fcd84d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/acceptance/test_project_releases.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import absolute_import

import json
import pytest

from django.conf import settings
from django.utils import timezone
Expand All @@ -25,6 +26,7 @@ def setUp(self):
self.path = u'/{}/{}/releases/'.format(
self.org.slug, self.project.slug)

@pytest.mark.skip(reason="Sentry 9 only")
def test_with_releases(self):
release = self.create_release(
project=self.project,
Expand All @@ -41,6 +43,7 @@ def test_with_releases(self):
self.browser.wait_until('.ref-project-releases')
self.browser.snapshot('project releases with releases')

@pytest.mark.skip(reason="Sentry 9 only")
def test_with_no_releases(self):
self.dismiss_assistant()
self.browser.get(self.path)
Expand Down Expand Up @@ -86,6 +89,7 @@ def setUp(self):
self.path = u'/{}/{}/releases/{}/'.format(
self.org.slug, self.project.slug, self.release.version)

@pytest.mark.skip(reason="Sentry 9 only")
def test_release_details_no_commits_no_deploys(self):
self.browser.get(self.path)
self.browser.wait_until_not('.loading')
Expand Down

0 comments on commit 2fcd84d

Please sign in to comment.