File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 22
33import json
44
5+ import pytest
6+
57import pathway as pw
68from pathway .engine import ExternalIndexFactory
79from pathway .tests .utils import assert_table_equality
@@ -24,6 +26,7 @@ class QuerySchema(pw.Schema):
2426 limit : int
2527
2628
29+ @pytest .mark .flaky (reruns = 5 )
2730def test_basic_search ():
2831 index = pw .debug .table_from_markdown (
2932 """
@@ -72,6 +75,7 @@ class ExpectedSchema(pw.Schema):
7275 assert_table_equality (result , expected )
7376
7477
78+ @pytest .mark .flaky (reruns = 5 )
7579def test_with_deletions ():
7680 index = pw .debug .table_from_markdown (
7781 """
@@ -121,6 +125,7 @@ class ExpectedSchema(pw.Schema):
121125 assert_table_equality (result , expected )
122126
123127
128+ @pytest .mark .flaky (reruns = 5 )
124129def test_filter ():
125130 class InputSchemaWithFilter (pw .Schema ):
126131 pk_source : int = pw .column_definition (primary_key = True )
You can’t perform that action at this time.
0 commit comments