Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove pytest ignore on modin, dask. pyspark tests with pandas >= 2 #1573

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import os

from pandera.engines.utils import pandas_version

try:
# pylint: disable=unused-import
import hypothesis # noqa F401
Expand All @@ -15,13 +13,6 @@

# ignore test files associated with hypothesis strategies
collect_ignore = []
collect_ignore_glob = []

# ignore pyspark, modin and dask tests until these libraries support pandas 2
if pandas_version().release >= (2, 0, 0):
collect_ignore_glob.append("pyspark/**")
collect_ignore_glob.append("modin/**")
collect_ignore_glob.append("dask/**")

if not HAS_HYPOTHESIS:
collect_ignore.append("test_strategies.py")
Expand Down
Loading