From 0c02a8e759837f6bd39d7a13529c183858dcf6bf Mon Sep 17 00:00:00 2001 From: MarcoGorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sat, 1 Jul 2023 16:20:19 +0100 Subject: [PATCH 1/3] chore(python): remove false "eager=True" from date_range tests --- py-polars/tests/unit/functions/test_range.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-polars/tests/unit/functions/test_range.py b/py-polars/tests/unit/functions/test_range.py index d0c31d05d460..824c12a3c801 100644 --- a/py-polars/tests/unit/functions/test_range.py +++ b/py-polars/tests/unit/functions/test_range.py @@ -225,7 +225,7 @@ def test_date_range_lazy_with_expressions( low, high, interval="1d", - eager=True, + eager=False, ).alias("dts") ).to_dict( False @@ -248,7 +248,7 @@ def test_date_range_lazy_with_expressions( low, high, interval="1d", - eager=True, + eager=False, ).alias("dts") ).to_dict( False From 50e0a2595a1a2485e4ba7689aa7e5e6bff16479b Mon Sep 17 00:00:00 2001 From: MarcoGorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sat, 1 Jul 2023 17:02:24 +0100 Subject: [PATCH 2/3] just remove the line --- py-polars/tests/unit/functions/test_range.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-polars/tests/unit/functions/test_range.py b/py-polars/tests/unit/functions/test_range.py index 824c12a3c801..d0c31d05d460 100644 --- a/py-polars/tests/unit/functions/test_range.py +++ b/py-polars/tests/unit/functions/test_range.py @@ -225,7 +225,7 @@ def test_date_range_lazy_with_expressions( low, high, interval="1d", - eager=False, + eager=True, ).alias("dts") ).to_dict( False @@ -248,7 +248,7 @@ def test_date_range_lazy_with_expressions( low, high, interval="1d", - eager=False, + eager=True, ).alias("dts") ).to_dict( False From 7531645903b338c2d0501dbea16f0a63cd8a57c4 Mon Sep 17 00:00:00 2001 From: MarcoGorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sat, 1 Jul 2023 18:08:09 +0100 Subject: [PATCH 3/3] fixup --- py-polars/tests/unit/functions/test_range.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/py-polars/tests/unit/functions/test_range.py b/py-polars/tests/unit/functions/test_range.py index d0c31d05d460..5890ae4e1f37 100644 --- a/py-polars/tests/unit/functions/test_range.py +++ b/py-polars/tests/unit/functions/test_range.py @@ -225,7 +225,6 @@ def test_date_range_lazy_with_expressions( low, high, interval="1d", - eager=True, ).alias("dts") ).to_dict( False @@ -248,7 +247,6 @@ def test_date_range_lazy_with_expressions( low, high, interval="1d", - eager=True, ).alias("dts") ).to_dict( False