diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mango/test/06-basic-text-test.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mango/test/06-basic-text-test.py b/src/mango/test/06-basic-text-test.py index a3fe383d6..1449ec82d 100644 --- a/src/mango/test/06-basic-text-test.py +++ b/src/mango/test/06-basic-text-test.py @@ -21,6 +21,10 @@ import hypothesis.strategies as st @unittest.skipIf(mango.has_text_service(), "text service exists") class TextIndexCheckTests(mango.DbPerClass): + @classmethod + def setUpClass(klass): + raise unittest.SkipTest("Re-enable once search is implemented") + def test_create_text_index(self): body = json.dumps({"index": {}, "type": "text"}) resp = self.db.sess.post(self.db.path("_index"), data=body) |
