Exemplo n.º 1
0
 def test_non_liftable_combine(self):
     run_combine(TestPipeline(runner=self.runner()), lift_combiners=False)
     self._assert_teardown_called()
Exemplo n.º 2
0
 def test_combine(self):
     run_combine(TestPipeline(runner=self.runner()))
     self._assert_teardown_called()
Exemplo n.º 3
0
 def test_combine(self):
     run_combine(self.pipeline)
Exemplo n.º 4
0
 def test_non_liftable_combine(self):
     run_combine(self.pipeline, lift_combiners=False)
Exemplo n.º 5
0
 def test_non_liftable_combine(self):
     test_options = PipelineOptions(flags=['--allow_unsafe_triggers'])
     run_combine(TestPipeline(runner=self.runner(), options=test_options),
                 lift_combiners=False)
     self._assert_teardown_called()