Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Zarr strives to maintain 100% test coverage under the latest Python stable relea
hatch env run --env test.py3.12-2.2-optional run-coverage
```

will automatically run the test suite with coverage and produce a XML coverage report. This should be 100% before code can be accepted into the main code base.
will automatically run the test suite with coverage and produce an XML coverage report. This should be 100% before code can be accepted into the main code base.

You can also generate an HTML coverage report by running:

Expand Down Expand Up @@ -273,4 +273,4 @@ performance benchmarks as part of our test suite. The benchmarks can be are foun
By default pytest is configured to run these benchmarks as plain tests (i.e., no benchmarking). To run
a benchmark with timing measurements, use the `--benchmark-enable` when invoking `pytest`.

The benchmarks are run as part of the continuous integration suite through [codspeed](https://codspeed.io/zarr-developers/zarr-python).
The benchmarks are run as part of the continuous integration suite through [codspeed](https://codspeed.io/zarr-developers/zarr-python).
2 changes: 1 addition & 1 deletion docs/user-guide/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ print(group)
```

The type of filesystem (e.g. S3, https, etc..) is inferred from the scheme of the url (e.g. s3 for "**s3**://noaa-nwm-retro-v2-zarr-pds").
In case a specific filesystem is needed, one can explicitly create it. For example to create a S3 filesystem:
In case a specific filesystem is needed, one can explicitly create it. For example to create an S3 filesystem:

```python exec="true" session="storage" source="above" result="ansi"
# Note: requires s3fs to be installed
Expand Down
2 changes: 1 addition & 1 deletion src/zarr/core/dtype/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def to_json(self, zarr_format: ZarrFormat) -> DTypeSpec_V2 | DTypeSpec_V3:
@abstractmethod
def _check_scalar(self, data: object) -> bool:
"""
Check that an python object is a valid scalar value for the wrapped data type.
Check that a python object is a valid scalar value for the wrapped data type.

Parameters
----------
Expand Down