From 1c7d7b549b1af02994c8a1acf397aed5a9dbe072 Mon Sep 17 00:00:00 2001 From: ugohuche Date: Fri, 12 Jul 2024 12:37:55 +0100 Subject: [PATCH] Removed doctest skip --- narwhals/series.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/narwhals/series.py b/narwhals/series.py index 4ed8fdb13..9101676bb 100644 --- a/narwhals/series.py +++ b/narwhals/series.py @@ -347,7 +347,7 @@ def mean(self) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) 2.0 >>> func(s_pl) 2.0 @@ -374,7 +374,7 @@ def count(self) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) 3 >>> func(s_pl) 3 @@ -405,7 +405,7 @@ def any(self) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) True >>> func(s_pl) True @@ -460,7 +460,7 @@ def min(self) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) 1 >>> func(s_pl) 1 @@ -487,7 +487,7 @@ def max(self) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) 3 >>> func(s_pl) 3 @@ -514,7 +514,7 @@ def sum(self) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) 6 >>> func(s_pl) 6 @@ -545,7 +545,7 @@ def std(self, *, ddof: int = 1) -> Any: We can then pass either pandas or Polars to `func`: - >>> func(s_pd) # doctest:+SKIP + >>> func(s_pd) 1.0 >>> func(s_pl) 1.0