From 907ceb0c17c6466ee84ab2399c7bb0be00bbd0d5 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Wed, 24 Jan 2024 16:46:27 +0100 Subject: [PATCH] Add missing marker --- .../unit/streaming/test_streaming_categoricals.py | 4 ++++ py-polars/tests/unit/streaming/test_streaming_sort.py | 10 ++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/py-polars/tests/unit/streaming/test_streaming_categoricals.py b/py-polars/tests/unit/streaming/test_streaming_categoricals.py index 0df920d4ee0d..65dd967abb76 100644 --- a/py-polars/tests/unit/streaming/test_streaming_categoricals.py +++ b/py-polars/tests/unit/streaming/test_streaming_categoricals.py @@ -1,5 +1,9 @@ +import pytest + import polars as pl +pytestmark = pytest.mark.xdist_group("streaming") + def test_streaming_nested_categorical() -> None: assert ( diff --git a/py-polars/tests/unit/streaming/test_streaming_sort.py b/py-polars/tests/unit/streaming/test_streaming_sort.py index 83957bdcffc8..c9befd8362c3 100644 --- a/py-polars/tests/unit/streaming/test_streaming_sort.py +++ b/py-polars/tests/unit/streaming/test_streaming_sort.py @@ -1,20 +1,18 @@ from __future__ import annotations +from collections import Counter from datetime import datetime from typing import TYPE_CHECKING, Any -if TYPE_CHECKING: - from pathlib import Path - - -from collections import Counter - import numpy as np import pytest import polars as pl from polars.testing import assert_frame_equal, assert_series_equal +if TYPE_CHECKING: + from pathlib import Path + pytestmark = pytest.mark.xdist_group("streaming")