Skip to content

Commit

Permalink
Skip pandera dask python3.8
Browse files Browse the repository at this point in the history
Since not worth fixing.
  • Loading branch information
skrawcz committed Nov 17, 2024
1 parent 4d040da commit 526ed53
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integrations/pandera/test_pandera_data_quality.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import sys

import dask.dataframe as dd
import numpy as np
import pandas as pd
Expand Down Expand Up @@ -146,6 +148,7 @@ def foo() -> pd.DataFrame:
h_pandera.check_output().get_validators(n)


@pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9 or higher")
def test_pandera_decorator_dask_df():
"""Validates that the function can be annotated with a dask dataframe type it'll work appropriately.
Expand Down Expand Up @@ -196,6 +199,7 @@ def foo(fail: bool = False) -> dd.DataFrame:
assert not result_success.passes


@pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9 or higher")
def test_pandera_decorator_dask_series():
"""Validates that the function can be annotated with a dask series type it'll work appropriately.
Install dask if this fails.
Expand Down

0 comments on commit 526ed53

Please sign in to comment.