Open vivaansinghvi07 opened 1 month ago
Attention: Patch coverage is 3.55330%
with 760 lines
in your changes missing coverage. Please review.
Project coverage is 82.48%. Comparing base (
cfb6992
) to head (e860f4f
).
:exclamation: There is a different number of reports uploaded between BASE (cfb6992) and HEAD (e860f4f). Click for more details.
HEAD has 25 uploads less than BASE
| Flag | BASE (cfb6992) | HEAD (e860f4f) | |------|------|------| |tests|48|23|
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
just found two bugs (not sure if the second one will reproduce):
ancestor_list
column; this should be created by using the alifestd_try_create_ancestor_list
from auxlib
>>> import hstrat
>>> help(hstrat.dataframe.surface_unpack_reconstruct)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/mmore500/2024-11-17/vivaan/hstrat/_auxiliary_lib/_GetAttrLaunderShim.py", line 36, in __call__
attr = self._wrapped_getattr(name, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mmore500/.local/lib/python3.12/site-packages/lazy_loader/__init__.py", line 82, in __getattr__
submod = importlib.import_module(submod_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib64/python3.12/importlib/__init__.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
File "<frozen importlib._bootstrap>", line 1324, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'hstrat.dataframe._surface_unpack_reconstruct'
>>> from hstrat.dataframe import surface_unpack_reconstruct
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/mmore500/2024-11-17/vivaan/hstrat/_auxiliary_lib/_GetAttrLaunderShim.py", line 36, in __call__
attr = self._wrapped_getattr(name, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mmore500/.local/lib/python3.12/site-packages/lazy_loader/__init__.py", line 82, in __getattr__
submod = importlib.import_module(submod_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib64/python3.12/importlib/__init__.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'hstrat.dataframe._surface_unpack_reconstruct'
Note: dataframe utils needs following items (to at least be planned) before merge
https://github.com/mmore500/hstrat/issues/167