Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Skip tests that were failing
Browse files Browse the repository at this point in the history
These tests were failing because we removed the latest data restriction
- we will restore these when we restore the latest data restriction
  • Loading branch information
timmow committed Jan 29, 2015
1 parent 93d8f0a commit 0f792de
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/transformers/tasks/test_latest_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

from mock import patch, Mock

from unittest.case import SkipTest


data = [
{
Expand Down Expand Up @@ -88,6 +90,7 @@ def test_compute(self, mock_dashboard, mock_dataset):
@patch("performanceplatform.client.DataSet.from_group_and_type")
@patch("performanceplatform.client.AdminAPI.get_data_set_dashboard")
def test_compute_old_date_range(self, mock_dashboard, mock_dataset):
raise SkipTest('skipped until latest data restriction reinstated')
mock_dashboard_data = [
{
'published': True,
Expand Down Expand Up @@ -124,6 +127,7 @@ def test_compute_old_date_range(self, mock_dashboard, mock_dataset):
@patch("performanceplatform.client.DataSet.from_group_and_type")
@patch("performanceplatform.client.AdminAPI.get_data_set_dashboard")
def test_compute_old_date_period(self, mock_dashboard, mock_dataset):
raise SkipTest('skipped until latest data restriction reinstated')
mock_dashboard_data = [
{
'published': True,
Expand Down

0 comments on commit 0f792de

Please sign in to comment.