PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pyfakefs
/
pytest_tests
"""Regression test for #947. Ensures that reloading the `pandas.core.arrays.arrow.extension_types` module succeeds. """ import sys from pathlib import Path import pytest try: import pandas as pd import parquet except ImportError: pd = None parquet = None @pytest.mark.skipif(pd is None, reason="pandas or parquet not installed") @pytest.mark.skipif(sys.version_info >= (3, 14), reason="parquet not available yet") def test_1(fs): dir_ = Path(__file__).parent / "data" fs.add_real_directory(dir_) pd.read_parquet(dir_ / "test.parquet") @pytest.mark.skipif(pd is None, reason="pandas or parquet not installed") @pytest.mark.skipif(sys.version_info >= (3, 14), reason="parquet not available yet") def test_2(): dir_ = Path(__file__).parent / "data" pd.read_parquet(dir_ / "test.parquet")
[-] pytest_doctest_test.py
[open]
[-] pytest_plugin_test.py
[open]
[+]
..
[+]
__pycache__
[-] io.py
[open]
[-] pytest_plugin_failing_helper.py
[open]
[-] local_import.py
[open]
[-] test_fs_with_monkeypatch.py
[open]
[-] pytest_reload_pandas_test.py
[open]
[-] conftest.py
[open]
[-] pytest_fixture_test.py
[open]
[-] example.py
[open]
[-] unhashable.py
[open]
[+]
data
[-] test_patch_on_setup.py
[open]
[-] test_reload_local_import.py
[open]
[-] __init__.py
[open]
[-] pytest_check_failed_plugin_test.py
[open]
[-] pytest_module_fixture_test.py
[open]
[-] pytest_fixture_param_test.py
[open]
[-] fake_fcntl_test.py
[open]
[+]
ns_package
[-] lib_using_pathlib.py
[open]
[+]
hook_test