@@ -92,7 +92,6 @@ def test_get_pipeline_stats(self):
9292 assert stats .get ("inputs" ) is not None
9393 assert stats .get ("outputs" ) is not None
9494
95- @single_host_only
9695 def test_case_sensitive_views_listen (self ):
9796 self .pipeline .start_paused ()
9897
@@ -210,7 +209,6 @@ def test_pipeline_get(self):
210209 assert df .shape [0 ] == 100
211210 self .pipeline .stop (force = True )
212211
213- @single_host_only
214212 def test_local_listen_after_start (self ):
215213 df_students = pd .read_csv ("tests/assets/students.csv" )
216214 df_grades = pd .read_csv ("tests/assets/grades.csv" )
@@ -743,7 +741,6 @@ def test_support_bundle_with_selectors(self):
743741 assert len (file_list ) >= 2
744742 assert "manifest.txt" in file_list
745743
746- @single_host_only
747744 def test_url_encoding_ingress_egress_table_name (self ):
748745 """
749746 CREATE TABLE "t1#a1" (
@@ -790,13 +787,11 @@ def test_url_encoding_ingress_egress_table_name(self):
790787 ]
791788 self .assertCountEqual (egress_result , expected_egress )
792789
793- @single_host_only
794790 def test_listen_non_existent_view_paused (self ):
795791 self .pipeline .start_paused ()
796792 with self .assertRaises (ValueError ):
797793 self .pipeline .listen ("FrodoBagginsInMordor" )
798794
799- @single_host_only
800795 def test_listen_non_existent_view_running (self ):
801796 self .pipeline .start ()
802797 with self .assertRaises (ValueError ):
0 commit comments