You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2019/05/21 18:30:25 UTC

[beam] branch master updated: Add a passing test to postcommit suites.

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 27771ef  Add a passing test to postcommit suites.
     new 088d16c  Merge pull request #8627 from tvalentyn/patch-51
27771ef is described below

commit 27771ef19ba16a35496edc0fd84d64a09b8ea923
Author: Valentyn Tymofieiev <va...@google.com>
AuthorDate: Mon May 20 14:18:47 2019 -0700

    Add a passing test to postcommit suites.
---
 sdks/python/apache_beam/examples/streaming_wordcount_it_test.py | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py b/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
index fabb773..281dc69 100644
--- a/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
+++ b/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
@@ -20,8 +20,6 @@
 from __future__ import absolute_import
 
 import logging
-import os
-import sys
 import unittest
 import uuid
 from builtins import range
@@ -80,10 +78,6 @@ class StreamingWordCountIT(unittest.TestCase):
     test_utils.cleanup_topics(self.pub_client,
                               [self.input_topic, self.output_topic])
 
-  @unittest.skipIf(sys.version[0:3] == '3.6' and
-                   os.environ.get('RUN_SKIPPED_PY3_TESTS') != '1',
-                   'This test still needs to be fixed on Python 3.6 '
-                   'TODO: BEAM-7181')
   @attr('IT')
   def test_streaming_wordcount_it(self):
     # Build expected dataset.