Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove CI warnings #136

Merged
merged 5 commits into from
Sep 26, 2023
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 .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
CONDA_ENV: [py310, py38, py39, upstream]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup conda
uses: mamba-org/provision-with-micromamba@main
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ci/environment-${{ matrix.CONDA_ENV }}.yml

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypipublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion ci/environment-py38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- pip
- pydap
- pytest
- rasterio
- rasterio <= 1.3.6
- s3fs >= 2021.08.0
- scikit-image
- rangehttpserver
Expand Down
2 changes: 1 addition & 1 deletion intake_xarray/tests/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def test_coerce_shape_array_non_int():
expected = np.append(array[:2, :], [[0], [0]], axis=1)
actual = _coerce_shape(array, shape)
assert (expected == actual).all()
assert expected.dtype == "float"
assert expected.dtype == np.float64


def test_read_image():
Expand Down
11 changes: 6 additions & 5 deletions intake_xarray/tests/test_remote.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Tests for intake-server, local HTTP file server, local "S3" object server
import aiohttp
import intake
import numpy as np
import os
import pytest
import requests
Expand Down Expand Up @@ -48,7 +49,7 @@ def data_server():
def test_http_server_files(data_server):
test_files = ['RGB.byte.tif', 'example_1.nc', 'example_2.nc', 'little_green.tif', 'little_red.tif']
h = fsspec.filesystem("http")
out = h.glob(data_server + '/')
out = h.glob(data_server + '/*')
assert len(out) > 0
assert set([data_server+'/'+x for x in test_files]).issubset(set(out))

Expand All @@ -68,7 +69,7 @@ def test_http_read_rasterio(data_server):
assert ("+init" in da.attrs.get('crs', "") or "+proj" in da.attrs.get('crs', "") or
"PROJCS" in da.spatial_ref.attrs["crs_wkt"])
assert da.attrs['AREA_OR_POINT'] == 'Area'
assert da.dtype == 'uint8'
assert da.dtype == np.uint8
assert da.isel(band=2,x=300,y=500).values == 129


Expand Down Expand Up @@ -122,7 +123,7 @@ def test_http_read_netcdf(data_server):
url = f'{data_server}/example_1.nc'
source = intake.open_netcdf(url)
ds = source.read()
assert ds['rh'].isel(lat=0,lon=0,time=0).values.dtype == 'float32'
assert ds['rh'].isel(lat=0,lon=0,time=0).values.dtype == np.float32
assert ds['rh'].isel(lat=0,lon=0,time=0).values == 0.5


Expand Down Expand Up @@ -235,7 +236,7 @@ def test_s3_read_rasterio(s3):
assert ("+init" in da.attrs.get('crs', "") or "+proj" in da.attrs.get('crs', "") or
"PROJCS" in da.spatial_ref.attrs["crs_wkt"])
assert da.attrs['AREA_OR_POINT'] == 'Area'
assert da.dtype == 'uint8'
assert da.dtype == np.uint8
assert da.isel(band=2,x=300,y=500).values == 129


Expand All @@ -245,7 +246,7 @@ def test_s3_read_netcdf(s3):
source = intake.open_netcdf(url,
storage_options=s3options)
ds = source.read()
assert ds['rh'].isel(lat=0,lon=0,time=0).values.dtype == 'float32'
assert ds['rh'].isel(lat=0,lon=0,time=0).values.dtype == np.float32
assert ds['rh'].isel(lat=0,lon=0,time=0).values == 0.5


Expand Down