Skip to content

Commit

Permalink
Update build script #805
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmezzetti committed Oct 29, 2024
1 parent 1d53235 commit 285769c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/python/testdatabase/testduckdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
DuckDB module tests
"""

import os
import unittest

from txtai.embeddings import Embeddings

from .testrdbms import Common
Expand Down Expand Up @@ -42,3 +45,11 @@ def tearDownClass(cls):

if cls.embeddings:
cls.embeddings.close()

@unittest.skipIf(os.name == "nt", "testArchive skipped on Windows")
def testArchive(self):
"""
Test embeddings index archiving
"""

super().testArchive()

0 comments on commit 285769c

Please sign in to comment.