Skip to content

Commit

Permalink
Removes unecessary skipifs
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Feb 8, 2024
1 parent 5b41e91 commit 4e6d4dd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/integrations/pandera/test_pandera_data_quality.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import sys

import dask.dataframe as dd
import numpy as np
import pandas as pd
Expand Down Expand Up @@ -102,7 +100,6 @@ def test_basic_pandera_decorator_series_passes():
assert validation_result.passes


@pytest.mark.skipif(sys.version_info < (3, 8), reason="requires python3.9 or higher")
def test_pandera_decorator_creates_correct_validator():
class OutputSchema(pa.DataFrameModel):
year: pa.typing.pandas.Series[int] = pa.Field(gt=2000, coerce=True)
Expand Down Expand Up @@ -136,7 +133,6 @@ def foo(should_break: bool = False) -> pa.typing.pandas.DataFrame[OutputSchema]:
assert not result_failed.passes


@pytest.mark.skipif(sys.version_info < (3, 8), reason="requires python3.9 or higher")
def test_pandera_decorator_fails_without_annotation():
def foo() -> pd.DataFrame:
return pd.DataFrame(
Expand Down

0 comments on commit 4e6d4dd

Please sign in to comment.