We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b485ce commit 4ab9b8bCopy full SHA for 4ab9b8b
tests/conftest.py
@@ -2,8 +2,6 @@
2
3
import os
4
5
-from pandera.engines.utils import pandas_version
6
-
7
try:
8
# pylint: disable=unused-import
9
import hypothesis # noqa F401
@@ -15,13 +13,6 @@
15
13
16
14
# ignore test files associated with hypothesis strategies
17
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/**")
25
26
if not HAS_HYPOTHESIS:
27
collect_ignore.append("test_strategies.py")
0 commit comments