Skip to content

Commit e5cd064

Browse files
committed
update skips
1 parent 0c5b903 commit e5cd064

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

bindings/python/benchmarks/benchmarks.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,9 @@ def time_conventional_ndarray(self):
220220
def time_conventional_pandas(self):
221221
pass
222222

223+
def time_conventional_polars(self):
224+
pass
225+
223226

224227
class ProfileReadDocument(Read):
225228
schema = Schema(
@@ -248,19 +251,25 @@ def setup(self):
248251
% (N_DOCS, len(BSON.encode(base_dict)) // 1024, len(base_dict))
249252
)
250253

251-
# All of the following tests are being skipped because NumPy/Pandas do not work with nested documents.
254+
# All of the following tests are being skipped because NumPy/Pandas/Polars do not work with nested documents.
252255
def time_to_numpy(self):
253256
pass
254257

255258
def time_to_pandas(self):
256259
pass
257260

261+
def time_to_polars(self):
262+
pass
263+
258264
def time_conventional_ndarray(self):
259265
pass
260266

261267
def time_conventional_pandas(self):
262268
pass
263269

270+
def time_conventional_polars(self):
271+
pass
272+
264273

265274
class ProfileReadSmall(Read):
266275
schema = Schema({"x": pa.int64(), "y": pa.float64()})

0 commit comments

Comments
 (0)