You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run the fixed version of pandas-12 the checkout and compile seem to work fine. But when I try to run the test I get:
ImportError while loading conftest '/home/gsakkas/bugs_in_py_clones/pandas/pandas/conftest.py'.
pandas/__init__.py:36: in <module>
raise ImportError(
E ImportError: C extension: No module named 'pandas._libs.tslibs.timezones' not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace --force' to build the C extensions first.
Not sure why pandas is not visible to pytest here. Any ideas?
The text was updated successfully, but these errors were encountered:
I had same problem, but in many fixed version of bugs. Try to directly come into venv virtual environment and pip required dependcy, after that just use pytest command to run pytest. It works for certain bugs, but i still meet same problem can' t be fixed by that.
Hello,
When I try to run the fixed version of
pandas-12
the checkout and compile seem to work fine. But when I try to run the test I get:Not sure why pandas is not visible to
pytest
here. Any ideas?The text was updated successfully, but these errors were encountered: