Skip to content

Commit

Permalink
Exclude failing streams
Browse files Browse the repository at this point in the history
  • Loading branch information
sgandhi1311 committed Jan 8, 2025
1 parent 8029731 commit 1ee6b0e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/test_facebook_all_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,15 @@ class FacebookAllFieldsTest(AllFieldsTest, FacebookBaseTest):
}
}

EXCLUDE_STREAMS = {
'ads_insights_hourly_advertiser',
'ads_insights_platform_and_device',
'ads_insights',
'ads_insights_age_and_gender',
'ads_insights_country',
'ads_insights_dma',
'ads_insights_region'
}

@staticmethod
def name():
Expand All @@ -222,4 +231,4 @@ def streams_to_test(self):
"ads_insights_hourly_advertiser stream to the test.")
assert self.is_done != True, self.assert_message

return self.expected_metadata().keys() - {'ads_insights_hourly_advertiser'}
return self.expected_metadata().keys() - self.EXCLUDE_STREAMS

0 comments on commit 1ee6b0e

Please sign in to comment.