Skip to content

Commit 4ab9b8b

Browse files
authored
remove pytest ignore on modin, dask. pyspark tests when pandas >= 2 is installed (#1573)
1 parent 9b485ce commit 4ab9b8b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/conftest.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
import os
44

5-
from pandera.engines.utils import pandas_version
6-
75
try:
86
# pylint: disable=unused-import
97
import hypothesis # noqa F401
@@ -15,13 +13,6 @@
1513

1614
# ignore test files associated with hypothesis strategies
1715
collect_ignore = []
18-
collect_ignore_glob = []
19-
20-
# ignore pyspark, modin and dask tests until these libraries support pandas 2
21-
if pandas_version().release >= (2, 0, 0):
22-
collect_ignore_glob.append("pyspark/**")
23-
collect_ignore_glob.append("modin/**")
24-
collect_ignore_glob.append("dask/**")
2516

2617
if not HAS_HYPOTHESIS:
2718
collect_ignore.append("test_strategies.py")

0 commit comments

Comments
 (0)