Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BEAM-8575] Reenable passing VR tests. #10277

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions sdks/python/apache_beam/transforms/window_test.py
Expand Up @@ -22,6 +22,8 @@
import unittest
from builtins import range

from nose.plugins.attrib import attr

import apache_beam as beam
from apache_beam.coders import coders
from apache_beam.runners import pipeline_context
Expand Down Expand Up @@ -300,6 +302,7 @@ def test_timestamped_with_combiners(self):
assert_that(mean_per_window, equal_to([(0, 2.0), (1, 7.0)]),
label='assert:mean')

@attr('ValidatesRunner')
def test_custom_windows(self):
with TestPipeline() as p:
pcoll = self.timestamped_key_values(p, 'key', 0, 1, 2, 3, 4, 5, 6)
Expand All @@ -313,6 +316,7 @@ def test_custom_windows(self):
('key', [5]),
('key', [6])]))

@attr('ValidatesRunner')
def test_window_assignment_idempotency(self):
with TestPipeline() as p:
pcoll = self.timestamped_key_values(p, 'key', 0, 2, 4)
Expand All @@ -326,6 +330,7 @@ def test_window_assignment_idempotency(self):
('key', [2]),
('key', [4])]))

@attr('ValidatesRunner')
def test_window_assignment_through_multiple_gbk_idempotency(self):
with TestPipeline() as p:
pcoll = self.timestamped_key_values(p, 'key', 0, 2, 4)
Expand Down