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
on the v3 branch, if I run hatch run test:pytest tests/test_group_v3.py, I get the following test failure only for python=3.11 and numpy=1.24:
──────────────────────────────────────────────────────────── test.py3.11-1.24-optional ─────────────────────────────────────────────────────────────
============================= test session starts ==============================
platform linux -- Python 3.11.5, pytest-8.1.1, pluggy-1.4.0
rootdir: /home/bennettd/dev/zarr-python
configfile: pyproject.toml
plugins: cov-5.0.0, asyncio-0.23.6
asyncio: mode=Mode.STRICT
collected 0 items / 1 error
==================================== ERRORS ====================================
___________________ ERROR collecting tests/test_group_v3.py ____________________
ImportError while importing test module '/home/bennettd/dev/zarr-python/tests/test_group_v3.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
../../.cache/pyapp/distributions/_11600656464259912759/python/lib/python3.11/importlib/__init__.py:126: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/test_group_v3.py:4: in <module>
from zarr.v3.group import AsyncGroup, Group, GroupMetadata
E ModuleNotFoundError: No module named 'zarr'
=========================== short test summary info ============================
ERROR tests/test_group_v3.py
!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!
=============================== 1 error in 0.15s ===============================
The error looks like it might be due to improper building of zarr-python in the test environment. I don't have time to track this down, so I'm flagging it in case anyone wants to pick this up.
The text was updated successfully, but these errors were encountered:
@d-v-b, I didn't run into the issue. Perhaps it's worth trying removing all the existing environments with hatch env prune before running the tests again?
@d-v-b, I didn't run into the issue. Perhaps it's worth trying removing all the existing environments with hatch env prune before running the tests again?
on the
v3
branch, if I runhatch run test:pytest tests/test_group_v3.py
, I get the following test failure only for python=3.11 and numpy=1.24:The error looks like it might be due to improper building of
zarr-python
in the test environment. I don't have time to track this down, so I'm flagging it in case anyone wants to pick this up.The text was updated successfully, but these errors were encountered: