Skip to content

Commit c541719

Browse files
committed
[python] Enable tests that were fixed on multihost.
Signed-off-by: Ben Pfaff <blp@feldera.com>
1 parent 9da2247 commit c541719

2 files changed

Lines changed: 0 additions & 10 deletions

File tree

python/tests/platform/test_ingress_formats.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
get,
1616
)
1717

18-
from feldera.testutils import single_host_only
19-
2018

2119
def _ingress_and_wait_token(
2220
pipeline: str,
@@ -408,7 +406,6 @@ def test_primary_keys(pipeline_name):
408406

409407

410408
@gen_pipeline_name
411-
@single_host_only
412409
def test_case_sensitive_tables(pipeline_name):
413410
"""
414411
- Distinguish between quoted and unquoted identifiers.
@@ -456,7 +453,6 @@ def test_case_sensitive_tables(pipeline_name):
456453

457454

458455
@gen_pipeline_name
459-
@single_host_only
460456
def test_duplicate_outputs(pipeline_name):
461457
"""
462458
multiple inserts producing duplicate output values.
@@ -506,7 +502,6 @@ def test_duplicate_outputs(pipeline_name):
506502

507503

508504
@gen_pipeline_name
509-
@single_host_only
510505
def test_upsert(pipeline_name):
511506
"""
512507
- Insert several rows with composite PK.

python/tests/platform/test_shared_pipeline.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)