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 f2e32af  Skip PubSubBigQueryIT.test_file_loads on Dataflow
     new 842942e  Merge pull request #9427 from ttanay/skip-test-file-loads
f2e32af is described below

commit f2e32afab3f7099ddbb7066249ed2025f0ff979f
Author: ttanay <ttanay...@gmail.com>
AuthorDate: Sun Aug 25 21:28:19 2019 +0530

    Skip PubSubBigQueryIT.test_file_loads on Dataflow
---
 sdks/python/apache_beam/io/gcp/bigquery_test.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sdks/python/apache_beam/io/gcp/bigquery_test.py 
b/sdks/python/apache_beam/io/gcp/bigquery_test.py
index 1294d87..2c0ef81 100644
--- a/sdks/python/apache_beam/io/gcp/bigquery_test.py
+++ b/sdks/python/apache_beam/io/gcp/bigquery_test.py
@@ -761,6 +761,8 @@ class PubSubBigQueryIT(unittest.TestCase):
 
   @attr('IT')
   def test_file_loads(self):
+    if isinstance(self.test_pipeline.runner, TestDataflowRunner):
+      self.skipTest('https://issuetracker.google.com/issues/118375066')
     self._run_pubsub_bq_pipeline(WriteToBigQuery.Method.FILE_LOADS,
                                  triggering_frequency=20)
 

Reply via email to