From bea825fe8c49dc79c9d7fde1ef70ba57ea6b8c92 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 23 Oct 2024 14:23:46 -0500 Subject: [PATCH] cleanup --- bindings/python/benchmarks/benchmarks.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bindings/python/benchmarks/benchmarks.py b/bindings/python/benchmarks/benchmarks.py index 65cd9b7b..795ac760 100644 --- a/bindings/python/benchmarks/benchmarks.py +++ b/bindings/python/benchmarks/benchmarks.py @@ -204,13 +204,16 @@ def setup(self): % (N_DOCS, len(BSON.encode(base_dict)) // 1024, len(base_dict)) ) - # All of the following tests are being skipped because NumPy/Pandas do not work with nested arrays. + # All of the following tests are being skipped because NumPy/Pandas/Polars do not work with nested arrays. def time_to_numpy(self): pass def time_to_pandas(self): pass + def time_to_polars(self): + pass + def time_conventional_ndarray(self): pass