This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new d444d03 [BEAM-1894] Remove obsolete EagerRunner test
new b920082 Merge pull request #11242 from [BEAM-1894] Remove obsolete
EagerRunner test
d444d03 is described below
commit d444d0322391c48e22e23ccf7c76e68619acd637
Author: Udi Meiri <[email protected]>
AuthorDate: Thu Mar 26 16:19:56 2020 -0700
[BEAM-1894] Remove obsolete EagerRunner test
EagerRunner was removed in #4492.
---
sdks/python/apache_beam/pipeline_test.py | 5 -----
1 file changed, 5 deletions(-)
diff --git a/sdks/python/apache_beam/pipeline_test.py
b/sdks/python/apache_beam/pipeline_test.py
index 8d87007..f970758 100644
--- a/sdks/python/apache_beam/pipeline_test.py
+++ b/sdks/python/apache_beam/pipeline_test.py
@@ -370,11 +370,6 @@ class PipelineTest(unittest.TestCase):
# pylint: disable=expression-not-assigned
p | Create([ValueError('msg')]) | Map(raise_exception)
- # TODO(BEAM-1894).
- # def test_eager_pipeline(self):
- # p = Pipeline('EagerRunner')
- # self.assertEqual([1, 4, 9], p | Create([1, 2, 3]) | Map(lambda x: x*x))
-
@mock.patch(
'apache_beam.runners.direct.direct_runner._get_transform_overrides')
def test_ptransform_overrides(self, file_system_override_mock):