Skip to content

Commit 88cfd61

Browse files
committed
RDBC-889 7.0 flaky tests skip
1 parent ea2144e commit 88cfd61

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

ravendb/tests/jvm_migrated_tests/client_tests/indexing_tests/time_series_tests/test_basic_time_series_indexes_java_script.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import unittest
12
from datetime import datetime, timedelta
23

34
from ravendb import GetTermsOperation
@@ -23,6 +24,7 @@ class TestBasicTimeSeriesIndexesJavaScript(TestBase):
2324
def setUp(self):
2425
super(TestBasicTimeSeriesIndexesJavaScript, self).setUp()
2526

27+
@unittest.skip("flaky")
2628
def test_time_series_names_for(self):
2729
now = RavenTestHelper.utc_today()
2830
index = Companies_ByTimeSeriesNames()

ravendb/tests/jvm_migrated_tests/more_like_this_tests/test_more_like_this.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import random
2+
import unittest
23
from abc import ABC
34
from typing import Optional, List, Type, TypeVar
45

@@ -112,6 +113,7 @@ def __factory(text: str):
112113
)
113114
self.assertEqual(5, len(results))
114115

116+
@unittest.skip("Boosting inside MoreLikeThis is not supported yet")
115117
def test_can_use_boost_param(self):
116118
key = "datas/1-A"
117119

@@ -360,6 +362,7 @@ def test_can_get_results_using_storage(self):
360362

361363
self._assert_more_like_this_has_matches_for(Data, DataIndex, self.store, Id)
362364

365+
@unittest.skip("Flaky")
363366
def test_can_make_dynamic_document_queries_with_complex_properties(self):
364367
ComplexDataIndex().execute(self.store)
365368

ravendb/tests/jvm_migrated_tests/query_tests/test_query.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ def test_query_first(self):
226226
with self.assertRaises(ValueError):
227227
session.query(object_type=UserWithId).single()
228228

229+
@unittest.skip("Method 'Lucene' is not supported on Corax")
229230
def test_query_lucene(self):
230231
self.add_users()
231232
with self.store.open_session() as session:

ravendb/tests/jvm_migrated_tests/spatial_tests/test_bounding_box_index.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import unittest
2+
13
from ravendb import AbstractIndexCreationTask
24
from ravendb.documents.indexes.spatial.configuration import SpatialOptionsFactory
35
from ravendb.tests.test_base import TestBase
@@ -29,6 +31,7 @@ class TestBoundingBoxIndex(TestBase):
2931
def setUp(self):
3032
super(TestBoundingBoxIndex, self).setUp()
3133

34+
@unittest.skip("flaky")
3235
def test_bounding_box(self):
3336
polygon = "POLYGON ((0 0, 0 5, 1 5, 1 1, 5 1, 5 5, 6 5, 6 0, 0 0))"
3437
rectangle1 = "2 2 4 4"

ravendb/tests/jvm_migrated_tests/spatial_tests/test_simon_bartlett.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import unittest
2+
13
from ravendb import AbstractIndexCreationTask
24
from ravendb.documents.indexes.spatial.configuration import SpatialOptions, SpatialSearchStrategy, SpatialRelation
35
from ravendb.tests.test_base import TestBase
@@ -23,6 +25,7 @@ class TestSimonBartlett(TestBase):
2325
def setUp(self):
2426
super(TestSimonBartlett, self).setUp()
2527

28+
@unittest.skip("flaky")
2629
def test_line_strings_should_intersect(self):
2730
self.store.execute_index(GeoIndex())
2831

@@ -52,6 +55,7 @@ def test_line_strings_should_intersect(self):
5255

5356
self.assertEqual(1, count)
5457

58+
@unittest.skip("flaky")
5559
def test_circles_should_not_intersect(self):
5660
self.store.execute_index(GeoIndex())
5761

0 commit comments

Comments
 (0)