py-pandas: fix tests (#29044)
This commit is contained in:
parent
e7894b4863
commit
0dd5d493d5
1 changed files with 6 additions and 2 deletions
|
@ -101,9 +101,13 @@ class PyPandas(PythonPackage):
|
|||
|
||||
@property
|
||||
def import_modules(self):
|
||||
modules = super(PythonPackage, self).import_modules
|
||||
modules = super(__class__, self).import_modules
|
||||
|
||||
ignored_imports = ["pandas.tests", "pandas.plotting._matplotlib"]
|
||||
ignored_imports = [
|
||||
"pandas.tests",
|
||||
"pandas.plotting._matplotlib",
|
||||
"pandas.core._numba.kernels"
|
||||
]
|
||||
|
||||
return [i for i in modules
|
||||
if not any(map(i.startswith, ignored_imports))]
|
||||
|
|
Loading…
Reference in a new issue