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
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ create_environment:
conda create -n $(ENVIRONMENT_NAME) python=3.11 $(CONDA_PACKAGES)
conda run --no-capture-output -n $(ENVIRONMENT_NAME) python -m pip install uv
conda run --no-capture-output -n $(ENVIRONMENT_NAME) uv pip install -c constraints.txt -e .[dev,docs]
conda run --no-capture-output -n $(ENVIRONMENT_NAME) uv pip install --no-build-isolation -c constraints.txt -e .[dev,docs,healpix]
conda run --no-capture-output -n $(ENVIRONMENT_NAME) uv pip install -r analysis-deps.txt

test:
Expand Down
2 changes: 0 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ ENV FORCE_CUDA_EXTENSION=1
# install python deps
COPY requirements.txt /tmp/requirements.txt
RUN python3 -m pip install -r /tmp/requirements.txt
COPY requirements-healpix.txt /tmp/requirements-healpix.txt
RUN python3 -m pip install --no-build-isolation -r /tmp/requirements-healpix.txt

FROM base AS production

Expand Down
2 changes: 2 additions & 0 deletions fme/core/test_coordinates.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
HEALPixCoordinates,
HybridSigmaPressureCoordinate,
LatLonCoordinates,
e2ghpx,
)
from fme.core.mask_provider import MaskProvider

Expand Down Expand Up @@ -239,6 +240,7 @@ def test_healpix_ops_raises_value_error_with_mask():
healpix_coords.get_gridded_operations(mask_provider=mask_provider)


@pytest.mark.skipif(e2ghpx is None, reason="earth2grid healpix not available")
@pytest.mark.parametrize("pad", [True, False])
def test_healpix_coordinates_xyz(pad: bool, very_fast_only: bool):
if very_fast_only:
Expand Down