From 11b7583cf8e4a3bb5f23d50303b853ba34bfb77c Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Mon, 14 Aug 2023 22:28:43 +0200 Subject: [PATCH] test(python): Mark import timing check as slow (#10487) --- py-polars/tests/unit/test_polars_import.py | 1 + 1 file changed, 1 insertion(+) diff --git a/py-polars/tests/unit/test_polars_import.py b/py-polars/tests/unit/test_polars_import.py index 8db1ece600fd..b3c4e14f00ec 100644 --- a/py-polars/tests/unit/test_polars_import.py +++ b/py-polars/tests/unit/test_polars_import.py @@ -41,6 +41,7 @@ def _import_timings_as_frame(best_of: int) -> pl.DataFrame: @pytest.mark.skipif(sys.platform == "win32", reason="Unreliable on Windows") +@pytest.mark.slow() def test_polars_import() -> None: # note: take the fastest of several runs to reduce noise. df_import = _import_timings_as_frame(best_of=3)