From 10a9a1090a8ab9b56d13701468c5bd6c8a63e9ee Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Wed, 10 Mar 2021 16:30:16 -0500 Subject: [PATCH] Install required packages for testing --- .github/workflows/ci_tests.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index b6621fbf7c0..08f160d1f88 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -76,7 +76,11 @@ jobs: # Install GMT and other required dependencies from conda-forge - name: Install dependencies shell: bash -l {0} - run: conda env update --file environment.yml + run: | + conda install gmt=6.1.1 numpy pandas xarray netCDF4 packaging \ + codecov coverage[toml] \ + pytest-cov pytest-mpl pytest>=6.0 \ + ipython # Show installed pkg information for postmortem diagnostic - name: List installed packages