File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -3349,6 +3349,10 @@ def plus_one(col1):
3349
3349
assert result ["plus_one_tf_name_" ][0 ] == 2
3350
3350
assert result ["plus_one_tf_name_" ][1 ] == 3
3351
3351
3352
+ @pytest .mark .skipif (
3353
+ not HAS_POLARS ,
3354
+ reason = "Polars is not installed." ,
3355
+ )
3352
3356
def test_apply_transformation_function_polars_udf_python_mode (self , mocker ):
3353
3357
# Arrange
3354
3358
mocker .patch ("hopsworks_common.client.get_instance" )
@@ -3390,6 +3394,10 @@ def plus_one(col1):
3390
3394
assert result ["plus_one_tf_name_" ][0 ] == 2
3391
3395
assert result ["plus_one_tf_name_" ][1 ] == 3
3392
3396
3397
+ @pytest .mark .skipif (
3398
+ not HAS_POLARS ,
3399
+ reason = "Polars is not installed." ,
3400
+ )
3393
3401
def test_apply_transformation_function_polars_udf_pandas_mode (self , mocker ):
3394
3402
# Arrange
3395
3403
mocker .patch ("hopsworks_common.client.get_instance" )
You can’t perform that action at this time.
0 commit comments