From cf45bdffad35f62e02dba93d301a02971c6e6fd4 Mon Sep 17 00:00:00 2001 From: Wolfgang Preimesberger Date: Sun, 27 Oct 2024 11:50:35 +0100 Subject: [PATCH] Update test --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4139f45..5fa0d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,8 @@ jobs: - name: Install dependencies and package shell: bash -l {0} run: | + conda install -c conda-forge pygrib netcdf4 pyresample pykdtree + # On macos pykdtree was built with OpenMP (C-level parallelization library) support if [ ${{ matrix.os }} == "macos-latest" ] then @@ -62,11 +64,6 @@ jobs: then conda install -c conda-forge pygrib fi - # CDO we can test on ubuntu - if [ ${{ matrix.os }} == "ubuntu-latest" ] - then - conda install -c conda-forge cdo - fi pip install -e .[testing] - name: Run all tests