From 7280fe2f3a60235ee4e8c388200a5fe9c993bb19 Mon Sep 17 00:00:00 2001 From: laurenbradford Date: Thu, 21 Nov 2024 16:05:04 -0500 Subject: [PATCH] get rid of conda install entirely --- .github/workflows/tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ebac585d..eac072fd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,10 +41,9 @@ jobs: source /home/runner/miniconda3/bin/activate conda deactivate fi - - name: Remove existing Conda environment + - name: Remove existing Conda installation run: | if [ -d "/home/runner/miniconda3" ]; then - /home/runner/miniconda3/bin/conda env remove --name base --yes sudo rm -rf /home/runner/miniconda3 fi - name: Install linux dependencies