Skip to content

Commit

Permalink
Add missing marker
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Jan 24, 2024
1 parent e534370 commit 907ceb0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 4 additions & 0 deletions py-polars/tests/unit/streaming/test_streaming_categoricals.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import pytest

import polars as pl

pytestmark = pytest.mark.xdist_group("streaming")


def test_streaming_nested_categorical() -> None:
assert (
Expand Down
10 changes: 4 additions & 6 deletions py-polars/tests/unit/streaming/test_streaming_sort.py
Original file line number Diff line number Diff line change
@@ -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")


Expand Down

0 comments on commit 907ceb0

Please sign in to comment.