diff --git a/README.md b/README.md index 44a8280..1da61af 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # zampy Tool for downloading Land Surface Model input data +[![github license badge](https://img.shields.io/github/license/EcoExtreML/zampy)](https://github.com/EcoExtreML/zampy) +[![build](https://github.com/EcoExtreML/zampy/actions/workflows/build.yml/badge.svg)](https://github.com/EcoExtreML/zampy/actions/workflows/build.yml) +[![workflow scc badge](https://sonarcloud.io/api/project_badges/measure?project=EcoExtreML_zampy&metric=coverage)](https://sonarcloud.io/dashboard?id=EcoExtreML_zampy) + ## Tool outline: diff --git a/tests/test_datasets/__init__.py b/tests/test_datasets/__init__.py index b4a4b57..f000199 100644 --- a/tests/test_datasets/__init__.py +++ b/tests/test_datasets/__init__.py @@ -3,4 +3,4 @@ test_folder = Path(__file__).resolve().parents[1] -data_folder = test_folder / "test_data" \ No newline at end of file +data_folder = test_folder / "test_data" diff --git a/tests/test_datasets/test_eth_canopy_height.py b/tests/test_datasets/test_eth_canopy_height.py index fc5e1b5..7ecf464 100644 --- a/tests/test_datasets/test_eth_canopy_height.py +++ b/tests/test_datasets/test_eth_canopy_height.py @@ -87,10 +87,8 @@ def test_load(self): # we assert the regridded coordinates expected_lat = [51.0, 52.0, 53.0, 54.0] - expected_lon = [3.0, 4.0, 5.0, 6.0] np.testing.assert_allclose(ds.latitude.values, expected_lat) - np.testing.assert_allclose(ds.longitude.values, expected_lon) def test_convert(self): pass