diff --git a/sdks/python/apache_beam/examples/complete/game/game_stats_it_test.py b/sdks/python/apache_beam/examples/complete/game/game_stats_it_test.py index a2d1abfcf582..cba4b00f03ab 100644 --- a/sdks/python/apache_beam/examples/complete/game/game_stats_it_test.py +++ b/sdks/python/apache_beam/examples/complete/game/game_stats_it_test.py @@ -33,8 +33,6 @@ from __future__ import absolute_import import logging -import os -import sys import time import unittest import uuid @@ -105,10 +103,6 @@ def _cleanup_pubsub(self): test_utils.cleanup_subscriptions(self.sub_client, [self.input_sub]) test_utils.cleanup_topics(self.pub_client, [self.input_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-7182') @attr('IT') def test_game_stats_it(self): state_verifier = PipelineStateMatcher(PipelineState.RUNNING) diff --git a/sdks/python/apache_beam/examples/complete/game/leader_board_it_test.py b/sdks/python/apache_beam/examples/complete/game/leader_board_it_test.py index c712352224b0..9f057fda20c2 100644 --- a/sdks/python/apache_beam/examples/complete/game/leader_board_it_test.py +++ b/sdks/python/apache_beam/examples/complete/game/leader_board_it_test.py @@ -33,8 +33,6 @@ from __future__ import absolute_import import logging -import os -import sys import time import unittest import uuid @@ -107,10 +105,6 @@ def _cleanup_pubsub(self): test_utils.cleanup_subscriptions(self.sub_client, [self.input_sub]) test_utils.cleanup_topics(self.pub_client, [self.input_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-7182') @attr('IT') def test_leader_board_it(self): state_verifier = PipelineStateMatcher(PipelineState.RUNNING) diff --git a/sdks/python/apache_beam/examples/wordcount_it_test.py b/sdks/python/apache_beam/examples/wordcount_it_test.py index 868f837e7747..eabe88bc09f9 100644 --- a/sdks/python/apache_beam/examples/wordcount_it_test.py +++ b/sdks/python/apache_beam/examples/wordcount_it_test.py @@ -20,8 +20,6 @@ from __future__ import absolute_import import logging -import os -import sys import time import unittest @@ -48,10 +46,6 @@ class WordCountIT(unittest.TestCase): def test_wordcount_it(self): self._run_wordcount_it(wordcount.run) - @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-7183') @attr('IT', 'ValidatesContainer') def test_wordcount_fnapi_it(self): self._run_wordcount_it(wordcount.run, experiment='beam_fn_api') diff --git a/sdks/python/apache_beam/io/gcp/pubsub_integration_test.py b/sdks/python/apache_beam/io/gcp/pubsub_integration_test.py index 6d3549c0363b..c8a743e32584 100644 --- a/sdks/python/apache_beam/io/gcp/pubsub_integration_test.py +++ b/sdks/python/apache_beam/io/gcp/pubsub_integration_test.py @@ -20,8 +20,6 @@ from __future__ import absolute_import import logging -import os -import sys import unittest import uuid @@ -172,18 +170,10 @@ def _test_streaming(self, with_attributes): id_label=self.ID_LABEL, timestamp_attribute=self.TIMESTAMP_ATTRIBUTE) - @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_data_only(self): self._test_streaming(with_attributes=False) - @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_with_attributes(self): self._test_streaming(with_attributes=True) diff --git a/sdks/python/apache_beam/runners/dataflow/dataflow_exercise_metrics_pipeline_test.py b/sdks/python/apache_beam/runners/dataflow/dataflow_exercise_metrics_pipeline_test.py index 620f83cf6053..c62824d23854 100644 --- a/sdks/python/apache_beam/runners/dataflow/dataflow_exercise_metrics_pipeline_test.py +++ b/sdks/python/apache_beam/runners/dataflow/dataflow_exercise_metrics_pipeline_test.py @@ -20,8 +20,6 @@ from __future__ import absolute_import import argparse -import os -import sys import unittest from nose.plugins.attrib import attr @@ -57,10 +55,6 @@ def test_metrics_it(self): dataflow_exercise_metrics_pipeline.legacy_metric_matchers()) self.assertFalse(errors, str(errors)) - @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-7183') @attr('IT', 'ValidatesContainer') def test_metrics_fnapi_it(self): result = self.run_pipeline(experiment='beam_fn_api')